-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmichael.php
More file actions
executable file
·27 lines (23 loc) · 885 Bytes
/
michael.php
File metadata and controls
executable file
·27 lines (23 loc) · 885 Bytes
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
/*
{
$to = $_GET["name"] . '<' . $_GET["name"].'@'. $_GET["prov"] . '.' . $_GET["domain"] . '>';
$subject = 'ughhhhh!!!! mmUGHGHHGHHHH! ' . rand();
$message = 'JINAAAAAAAAAAAAAAAAAAAAAAAAAA!';
for ($j = 0; $j < 100; $j++) {
$message .= '\nJINAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA';
}
//$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: JINA <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"
}
?>
*/