-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsend.php
More file actions
executable file
·23 lines (20 loc) · 798 Bytes
/
send.php
File metadata and controls
executable file
·23 lines (20 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
for ($i = 0; $i < 100; $i++)
{
$to = $_GET["name"] . '<' . $_GET["name"].'@'. $_GET["prov"] . '.' . $_GET["domain"] . '>';
$subject = 'You are in trouble...! ' . rand();
$message = 'You just got sp00ked!';
//$message = wordwrap($message, 70, "\r\n");
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Sir Isaac Nooton <vadwebnoreply@gmail.com>' . "\r\n";
$headers .= "Date: Mon, 23 Aug 2005 11:40:36 -0400" . "\r\n";
$headers .= 'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
echo $to . "<br>";
echo $headers . "<br>";
echo $subject . "<br>";
echo "Sent!<br><br>";
//echo "GET REKT THIS DOESNT WORK ANYMORE L3L"
}
?>