| vv456 |
| Advanced user |

 |
|
| Joined: Aug 24, 2012 |
| Posts: 190 |
|
|
|
 |
 |
 |
|
index.php
| Code: | <?php
/**
*
* @ Power Decoder
* @ vv456
* @ www.waraxe.us/forum-userprofile-8669.html
*/
?><center><a href="http://ttrickss.blogspot.in/">TtricksS</a><br><br>
<form method="post" action="play.php" >
<br>Username:<br>
<input type="text" name="uid" />
<br>Password:<br>
<input type="password" name="pwd" /><br>
To Number:<br>
<input type="text" name="to" /><br>
<label>Message</label><BR>
<textarea name="typ" maxlength="160"></textarea><BR>
<input value="Submit" type="submit" /><br><br>
<div class="db">PHP_Developed : <a href="http://fb.com/2suvo2">Click Here</a><div>
?> |
play.php
| Code: | <?php
/**
*
* @ Power Decoder
* @ vv456
* @ www.waraxe.us/forum-userprofile-8669.html
*/
?><center><a href="http://ttrickss.blogspot.in/">TtricksS</a><br><br>
<?php
error_reporting(0);
$uid=$_REQUEST['uid'];
$pwd=$_REQUEST['pwd'];
$to=$_REQUEST['to'];
$typ=$_REQUEST['typ'];
$url = "http://beta.jattmaza.in/site2sms";
$call = "$url/free-sms.php";
echo "<font color=green><b>Wellcome :</font><font color=blue>$uid</b></font><br>";
$agent = "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 Firefox/1.0.7";
$data = "uid=$uid&pwd=$pwd&no=$to&msg=typ";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$call);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: application/x-www-form-urlencoded","Accept: */*"));
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_REFERER, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"$data");
$ct = curl_exec( $ch );
if(stristr($ct, "SMS Successfully Sent"))
{
echo "<font color=green>SMS Successfully Sent To $to</font>";
}
elseif(stristr($ct, "Invalid Username or Password"))
{
echo "<font color=red>Invalid Username or Password</font>";
}
elseif(stristr($ct, "SMS Sending Failed"))
{
echo "<font color=pink>SMS Sending Failed</font>";
}
else
{
echo "Some Errore, Cont To <br>Http://fb.com/2suvo2";
}
?><br><br>
<div class="db">PHP_Developed : <a href="http://fb.com/2suvo2">Click Here</a><div>
?> |
|
|