<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Schadenfreude &#187; phishing</title>
	<atom:link href="http://www.ralree.com/tag/phishing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralree.com</link>
	<description>Malicious enjoyment derived from observing someone else's misfortune</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:49:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PhishTank pwns Phishing Phools</title>
		<link>http://www.ralree.com/2006/10/07/phishtank-pwns-phishing-phools/</link>
		<comments>http://www.ralree.com/2006/10/07/phishtank-pwns-phishing-phools/#comments</comments>
		<pubDate>Sat, 07 Oct 2006 12:31:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/06/23/phishtank-pwns-phishing-phools</guid>
		<description><![CDATA[PhishTank is an awesome website that keeps a database of phishing websites that are user submitted and verified. It integrates with OpenDNS, so when a site is verified by the community as a phishing site, OpenDNS users will see a phishing warning instead of the original website. There are also other perks like spelling correction and faster DNS resolves, but the phishing this is revolutionary. I joined PhishTank today, and I&#8217;m currently in second place on number of phishing sites [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phishtank.com">PhishTank</a> is an awesome website that keeps a database of phishing websites that are<br />
user submitted and verified.  It integrates with<br />
<a href="http://www.opendns.com">OpenDNS</a>, so when a site is verified by the community<br />
as a phishing site, OpenDNS users will see a phishing warning instead of the<br />
original website.  There are also other perks like spelling correction and<br />
faster DNS resolves, but the phishing this is revolutionary.  I joined<br />
PhishTank today, and I&#8217;m currently in second place on number of phishing sites<br />
submitted.  I submitted 167 of them from Google&#8217;s blacklist after filtering it<br />
with a short perl script.</p>
<div class="CodeRay">
<div class="code">
<pre><code>
#!/usr/bin/perl
use strict;
use LWP;
die(&quot;Specify a link file.&quot;) unless $ARGV[0];
open IN, &quot;&lt;&quot;, $ARGV[0];
open OUT, &quot;&gt;&gt;&quot;, &quot;results.&quot;.$ARGV[0];
while(&lt;IN&gt;) {
  if(/&lt;a href=&quot;(.*?)&quot;/) {
    my $browser = LWP::UserAgent-&gt;new;
    $browser-&gt;timeout(3);
    my $response = $browser-&gt;get($1);
    if($response-&gt;is_success) {
      print OUT &quot;$_\n&quot;;
      print &quot;Success: $1\n&quot;;
    } else { print &quot;Failed: $1\n&quot;; }
  }
}
</code></pre>
</div>
</div>
<p>:) I&#8217;m so happy when I find sites that are already marked as phishers.  If<br />
only the process of submission could be automated completely&#8230;I&#8217;ll play with<br />
the API on PhishNet and maybe it will become reality.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2006/10/07/phishtank-pwns-phishing-phools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

