Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.135.247.237
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
oasis /
aws /
GuzzleHttp /
Psr7 /
[ HOME SHELL ]
Name
Size
Permission
Action
AppendStream.php
5.59
KB
-rwxr-xr-x
BufferStream.php
2.97
KB
-rwxr-xr-x
CachingStream.php
4.15
KB
-rwxr-xr-x
DroppingStream.php
1.05
KB
-rwxr-xr-x
FnStream.php
3.84
KB
-rwxr-xr-x
InflateStream.php
1.78
KB
-rwxr-xr-x
LazyOpenStream.php
880
B
-rwxr-xr-x
LimitStream.php
4.11
KB
-rwxr-xr-x
MessageTrait.php
5.78
KB
-rwxr-xr-x
MultipartStream.php
4.58
KB
-rwxr-xr-x
NoSeekStream.php
424
B
-rwxr-xr-x
PumpStream.php
3.94
KB
-rwxr-xr-x
Request.php
3.63
KB
-rwxr-xr-x
Response.php
4.68
KB
-rwxr-xr-x
Rfc7230.php
684
B
-rwxr-xr-x
ServerRequest.php
9.59
KB
-rwxr-xr-x
Stream.php
6.62
KB
-rwxr-xr-x
StreamDecoratorTrait.php
3.2
KB
-rwxr-xr-x
StreamWrapper.php
3.67
KB
-rwxr-xr-x
UploadedFile.php
7.37
KB
-rwxr-xr-x
Uri.php
21
KB
-rwxr-xr-x
UriNormalizer.php
8.12
KB
-rwxr-xr-x
UriResolver.php
8.57
KB
-rwxr-xr-x
functions.php
26.06
KB
-rwxr-xr-x
functions_include.php
156
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DroppingStream.php
<?php namespace GuzzleHttp\Psr7; use Psr\Http\Message\StreamInterface; /** * Stream decorator that begins dropping data once the size of the underlying * stream becomes too full. */ class DroppingStream implements StreamInterface { use StreamDecoratorTrait; private $maxLength; /** * @param StreamInterface $stream Underlying stream to decorate. * @param int $maxLength Maximum size before dropping data. */ public function __construct(StreamInterface $stream, $maxLength) { $this->stream = $stream; $this->maxLength = $maxLength; } public function write($string) { $diff = $this->maxLength - $this->stream->getSize(); // Begin returning 0 when the underlying stream is too large. if ($diff <= 0) { return 0; } // Write the stream or a subset of the stream if needed. if (strlen($string) < $diff) { return $this->stream->write($string); } return $this->stream->write(substr($string, 0, $diff)); } }
Close