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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/razorpay/razorpay/   drwxr-xr-x
Free 13.3 GB of 57.97 GB (22.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Razorpay.php (1.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

// Include Requests only if not already defined
if (class_exists('Requests') === false)
{
    require_once 
__DIR__.'/libs/Requests-1.7.0/library/Requests.php';
}

try
{
    
Requests::register_autoloader();

    if (
version_compare(Requests::VERSION'1.6.0') === -1)
    {
        throw new 
Exception('Requests class found but did not match');
    }
}
catch (
\Exception $e)
{
    throw new 
Exception('Requests class found but did not match');
}

spl_autoload_register(function ($class)
{
    
// project-specific namespace prefix
    
$prefix 'Razorpay\Api';

    
// base directory for the namespace prefix
    
$base_dir __DIR__ '/src/';

    
// does the class use the namespace prefix?
    
$len strlen($prefix);

    if (
strncmp($prefix$class$len) !== 0)
    {
        
// no, move to the next registered autoloader
        
return;
    }

    
// get the relative class name
    
$relative_class substr($class$len);

    
//
    // replace the namespace prefix with the base directory,
    // replace namespace separators with directory separators
    // in the relative class name, append with .php
    //
    
$file $base_dir str_replace('\\''/'$relative_class) . '.php';

    
// if the file exists, require it
    
if (file_exists($file))
    {
        require 
$file;
    }
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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