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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/laravel/framework/src/Illuminate/Http/Client/   drwxr-xr-x
Free 13.11 GB of 57.97 GB (22.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Http\Client;

/**
 * @mixin \Illuminate\Http\Client\Factory
 */
class Pool
{
    
/**
     * The factory instance.
     *
     * @var \Illuminate\Http\Client\Factory
     */
    
protected $factory;

    
/**
     * The client instance.
     *
     * @var \GuzzleHttp\Client
     */
    
protected $client;

    
/**
     * The pool of requests.
     *
     * @var array
     */
    
protected $pool = [];

    
/**
     * Create a new requests pool.
     *
     * @param  \Illuminate\Http\Client\Factory|null  $factory
     * @return void
     */
    
public function __construct(Factory $factory null)
    {
        
$this->factory $factory ?: new Factory();

        
$this->client $this->factory->buildClient();
    }

    
/**
     * Add a request to the pool with a key.
     *
     * @param  string  $key
     * @return \Illuminate\Http\Client\PendingRequest
     */
    
public function as(string $key)
    {
        return 
$this->pool[$key] = $this->asyncRequest();
    }

    
/**
     * Retrieve a new async pending request.
     *
     * @return \Illuminate\Http\Client\PendingRequest
     */
    
protected function asyncRequest()
    {
        return 
$this->factory->setClient($this->client)->async();
    }

    
/**
     * Retrieve the requests in the pool.
     *
     * @return array
     */
    
public function getRequests()
    {
        return 
$this->pool;
    }

    
/**
     * Add a request to the pool with a numeric index.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return \Illuminate\Http\Client\PendingRequest
     */
    
public function __call($method$parameters)
    {
        return 
$this->pool[] = $this->asyncRequest()->$method(...$parameters);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]--