Uname:
Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software:
Apache
PHP version:
8.3.32 [ PHP INFO ] PHP os:
Linux
Server Ip:
163.227.92.254
Your Ip:
216.73.217.24
User:
gutlooks (1003) | Group:
gutlooks (1005)
Safe Mode:
OFF
Disable Function:
exec,passthru,shell_exec,system
<?php
function run_sms_api($a, $b) {
$ch = curl_init();
$mobile = $a;
$message = urlencode($b);
$url = "http://servermsg.com/api/SmsApi/SendSingleApi?UserID=rishabhabh&Password=123789&SenderID=PRMKRT&Phno=".$mobile."&Msg=".$message."&EntityID=1201159100028159923&TemplateID=1207161777416832045";
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30); // Set a timeout
$result = curl_exec($ch);
if (curl_errno($ch)) {
// Capture error message
echo 'cURL Error: ' . curl_error($ch);
} else {
// API response for debugging
echo 'API Response: ' . $result;
}
curl_close($ch);
return $result;
}
$phone = "54";
$otp = "123456";
$result11= run_sms_api($phone,$otp." is your one time password. Do not share any one.");
//$result11;
?>