style
Active Member
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head><title>FAKE SMS vy StyleVN Hacker</title></head>
<style>
* body
{
background-color: rgb(74,81,85);
}
body,td,th {
color: #99CC00;
}
h2
{
color: #FFCC00;
}
h1 {
padding: 10px 15px;
}
.main-content {
width: 70%; height: 200px;margin: auto; background: rgb(74,81,85); border-radius: 5px 5px 5px 5px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.5); min-height: 340px; position: relative;
}
textarea, input {
border-radius: 5px 5px 5px 5px;
}
input {
height: 20px;width: 70px;text-align: center;
}
.button {
}
.submit-button
{
background: #57A02C;
border:solid 1px #57A02C;
border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
border-bottom: 1px solid rgba(0,0,0,0.25);
position: relative;
color:#FFF;
display: inline-block;
cursor:pointer;
font-size:13px;
padding:3px 8px;
height: 30px;width: 120px;
}
.submit-button:hover {
background:#82D051;border:solid 1px #86CC50;
height: 30px;width: 120px; }
#show {
width: 70%;margin: auto;padding: 10px 10px;
}
</style>
</head>
<body>
<div class="main-content">
<section id="main" class=""><center><h1>Fake SMS by MTD <img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/71.gif"></h1>
<?php // RAY_temp_wesmanbigwig13.php 2013-10-15
error_reporting(E_ALL);
// http://www.experts-exchange.com/Web_Development/Web_Frameworks/Q_28267038.html
// IF THERE IS A REQUEST
if (!empty($_POST))
{
$username = 'kxx6xsfq';
$password = 'Fwr3vcLm';
$destination = $_POST['PHONENUMBER'];
$source = $_POST['FROMNAME'];
$text = $_POST['SAMPLETEXT'];
$content = 'action=sendsms'.
'&user='.rawurlencode($username).
'&password='.rawurlencode($password).
'&to='.rawurlencode($destination).
'&from='.rawurlencode($source).
'&text='.rawurlencode($text);
$smsglobal_response = file_get_contents('http://www.smsglobal.com.au/http-api.php?'.$content);
//Sample Response
//OK: 0; Sent queued message ID: 04b4a8d4a5a02176 SMSGlobalMsgID:6613115713715266
$explode_response = explode('SMSGlobalMsgID:', $smsglobal_response);
if(count($explode_response) == 2) { //Message Success
$smsglobal_message_id = $explode_response[1];
//SMSGlobal Message ID
echo 'Gửu thành công rồi bé'.$smsglobal_message_id;
} else { //Message Failed
echo 'Message Failed'.'<br />';
//SMSGlobal Response
echo $smsglobal_response;
}
}
$form = <<<EOD
<form method="post">
<table>
<td>Phone cần fake</td>
<td><input type="text" style="width:100%" name="PHONENUMBER" /></td>
</tr>
<td>Số đt cần gửi</td>
<td><input type="text" style="width:100%" name="FROMNAME" /></td>
</tr>
<td>Nội Dung tin nhắn</td>
<td><input type="text" style="width:100%" name="SAMPLETEXT" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" style="width:100%" value="Send" /></td>
</tr>
</table>
</form>
EOD;
echo $form;