Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
nikic /
fast-route /
src /
[ 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--
bootstrap.php
294
B
-rw-r--r--
DataGenerator.php
682
B
-rw-r--r--
Dispatcher.php
594
B
-rw-r--r--
functions.php
2.49
KB
-rw-r--r--
RouteCollector.php
3.77
KB
-rw-r--r--
RouteParser.php
1.01
KB
-rw-r--r--
Route.php
921
B
-rw-r--r--
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