!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/smm.picotech.app/public_html/vendor/php-http/httplug/src/Exception/   drwxr-xr-x
Free 28.66 GB of 117.98 GB (24.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Http\Client\Exception;

use 
Psr\Http\Message\RequestInterface;
use 
Psr\Http\Message\ResponseInterface;

/**
 * Thrown when a response was received but the request itself failed.
 *
 * In addition to the request, this exception always provides access to the response object.
 *
 * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
 */
class HttpException extends RequestException
{
    
/**
     * @var ResponseInterface
     */
    
protected $response;

    
/**
     * @param string $message
     */
    
public function __construct(
        
$message,
        
RequestInterface $request,
        
ResponseInterface $response,
        
\Exception $previous null
    
) {
        
parent::__construct($message$request$previous);

        
$this->response $response;
        
$this->code $response->getStatusCode();
    }

    
/**
     * Returns the response.
     *
     * @return ResponseInterface
     */
    
public function getResponse()
    {
        return 
$this->response;
    }

    
/**
     * Factory method to create a new exception with a normalized error message.
     */
    
public static function create(
        
RequestInterface $request,
        
ResponseInterface $response,
        
\Exception $previous null
    
) {
        
$message sprintf(
            
'[url] %s [http method] %s [status code] %s [reason phrase] %s',
            
$request->getRequestTarget(),
            
$request->getMethod(),
            
$response->getStatusCode(),
            
$response->getReasonPhrase()
        );

        return new static(
$message$request$response$previous);
    }
}

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