Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.147.27.154
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
ifk /
web.back /
framework /
3rdParty /
PhpShell /
[ HOME SHELL ]
Name
Size
Permission
Action
PHP
[ DIR ]
drwxr-xr-x
README
2.02
KB
-rw-r--r--
php-shell-cmd.php
2.8
KB
-rw-r--r--
php-shell-init.php
3.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : php-shell-cmd.php
<?php $f = <<<EOF PHP-Shell - Version %s%s (c) 2006, Jan Kneschke <jan@kneschke.de> >> use '?' to open the inline help EOF; printf($f, $__shell->getVersion(), $__shell->hasReadline() ? ', with readline() support' : ''); unset($f); print $__shell_exts->colour->getColour("default"); while($__shell->input()) { if ($__shell_exts->autoload->isAutoloadEnabled() && !function_exists('__autoload')) { /** * default autoloader * * If a class doesn't exist try to load it by guessing the filename * class PHP_Shell should be located in PHP/Shell.php. * * you can set your own autoloader by defining __autoload() before including * this file * * @param string $classname name of the class */ function __autoload($classname) { global $__shell_exts; if ($__shell_exts->autoload_debug->isAutoloadDebug()) { print str_repeat(".", $__shell_exts->autoload_debug->incAutoloadDepth())." -> autoloading $classname".PHP_EOL; } include_once str_replace('_', '/', $classname).'.php'; if ($__shell_exts->autoload_debug->isAutoloadDebug()) { print str_repeat(".", $__shell_exts->autoload_debug->decAutoloadDepth())." <- autoloading $classname".PHP_EOL; } } } try { $__shell_exts->exectime->startParseTime(); if ($__shell->parse() == 0) { ## we have a full command, execute it $__shell_exts->exectime->startExecTime(); $__shell_retval = eval($__shell->getCode()); if (isset($__shell_retval)) { print $__shell_exts->colour->getColour("value"); if (function_exists("__shell_print_var")) { __shell_print_var($__shell,$__shell_retval, $__shell_exts->verboseprint->isVerbose()); } else { var_export($__shell_retval); } } ## cleanup the variable namespace unset($__shell_retval); $__shell->resetCode(); } } catch(Exception $__shell_exception) { print $__shell_exts->colour->getColour("exception"); printf('%s (code: %d) got thrown'.PHP_EOL, get_class($__shell_exception), $__shell_exception->getCode()); print $__shell_exception; $__shell->resetCode(); ## cleanup the variable namespace unset($__shell_exception); } print $__shell_exts->colour->getColour("default"); $__shell_exts->exectime->stopTime(); if ($__shell_exts->exectime->isShow()) { printf(" (parse: %.4fs, exec: %.4fs)", $__shell_exts->exectime->getParseTime(), $__shell_exts->exectime->getExecTime() ); } } print $__shell_exts->colour->getColour("reset");
Close