Revonzy Mini Shell

Şuanki Dizin: /home/shrishtiarchitec/www/libraries/functions/
Dosya Yükle :
Şuanki Dosya : /home/shrishtiarchitec/www/libraries/functions/sms.php

<?php
class Send
{
  public function Sms($contactno,$content)
  {
     
	//$authKey = "74958A2tgaMyx547717dd"; //thelift club sms api key 
	$authKey = "84713A9JSRj3qtNl5551c9d6"; //thefly club sms api key 

	//Multiple mobiles numbers seperated by comma
	$mobileNumber = $contactno;



//Your message to send, Add URL endcoding here.
$message = urlencode($content);
//$senderId = "TLClub";
$senderId = "TheFly";
//Define route 
$route = "template";
//Prepare you post parameters
$postData = array(
    'authkey' => $authKey,
    'mobiles' => $mobileNumber,
    'message' => $message,
	'sender'=> $senderId,
    'route' => $route
);

//API URL
$url="https://control.msg91.com/sendhttp.php";

// init the resource
$ch = curl_init();
curl_setopt_array($ch, array(
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $postData
    //,CURLOPT_FOLLOWLOCATION => true
));

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

//get response
$output = curl_exec($ch);

curl_close($ch);

return $output;
  }
  
  
   
}
?>

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux vps.suncrosonline.com 3.10.0-862.3.2.el7.x86_64 #1 SMP Mon May 21 23:36:36 UTC 2018 x86_64
Apache
162.241.69.42