Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
guzzlehttp /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
AppendStream.php
5.59
KB
-rw-r--r--
2018-12-04 09:00
BufferStream.php
2.97
KB
-rw-r--r--
2018-12-04 09:00
CachingStream.php
4.15
KB
-rw-r--r--
2018-12-04 09:00
DroppingStream.php
1.05
KB
-rw-r--r--
2018-12-04 09:00
FnStream.php
3.84
KB
-rw-r--r--
2018-12-04 09:00
InflateStream.php
1.78
KB
-rw-r--r--
2018-12-04 09:00
LazyOpenStream.php
880
B
-rw-r--r--
2018-12-04 09:00
LimitStream.php
4.11
KB
-rw-r--r--
2018-12-04 09:00
MessageTrait.php
4.47
KB
-rw-r--r--
2018-12-04 09:00
MultipartStream.php
4.58
KB
-rw-r--r--
2018-12-04 09:00
NoSeekStream.php
424
B
-rw-r--r--
2018-12-04 09:00
PumpStream.php
3.94
KB
-rw-r--r--
2018-12-04 09:00
Request.php
3.35
KB
-rw-r--r--
2018-12-04 09:00
Response.php
4.13
KB
-rw-r--r--
2018-12-04 09:00
Rfc7230.php
684
B
-rw-r--r--
2018-12-04 09:00
ServerRequest.php
9.57
KB
-rw-r--r--
2018-12-04 09:00
Stream.php
7.04
KB
-rw-r--r--
2018-12-04 09:00
StreamDecoratorTrait.php
3.2
KB
-rw-r--r--
2018-12-04 09:00
StreamWrapper.php
3.67
KB
-rw-r--r--
2018-12-04 09:00
UploadedFile.php
7.37
KB
-rw-r--r--
2018-12-04 09:00
Uri.php
20.3
KB
-rw-r--r--
2018-12-04 09:00
UriNormalizer.php
8.12
KB
-rw-r--r--
2018-12-04 09:00
UriResolver.php
8.57
KB
-rw-r--r--
2018-12-04 09:00
functions.php
25.98
KB
-rw-r--r--
2018-12-04 09:00
functions_include.php
156
B
-rw-r--r--
2018-12-04 09:00
Save
Rename
<?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' ) { 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) { $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; } }