Chuck Kollars wrote:
The list on http://proxy.org is the most complete one
I know of. If you can figure out a way to
automatically suck up their entire list _every_day_,
remove duplicates, and add all those to your banned
list, you can stop _much_ (but not anywhere near
_all_) of the illicit activity.
#!/usr/bin/perl
$page = `wget -O - --user-agent="Mozilla/5.0 (Windows; U; Windows NT
5.1; sv-SE; rv:1.8.0.2) Gecko/20060308 Firefox/1.5.0.6" http://proxy.org/`
while ($page =~ /<option.*?value="(.*?)">/gi) {
print "$1\n";
}
--
Andreas