!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/twilio/sdk/src/Twilio/Jwt/Client/   drwxrwxr-x
Free 28.68 GB of 117.98 GB (24.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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


namespace Twilio\Jwt\Client;


/**
 * Scope URI implementation
 *
 * Simple way to represent configurable privileges in an OAuth
 * friendly way. For our case, they look like this:
 *
 * scope:<service>:<privilege>?<params>
 *
 * For example:
 * scope:client:incoming?name=jonas
 */
class ScopeURI {
    public 
$service;
    public 
$privilege;
    public 
$params;

    public function 
__construct(string $servicestring $privilege, array $params = []) {
        
$this->service $service;
        
$this->privilege $privilege;
        
$this->params $params;
    }

    public function 
toString(): string {
        
$uri "scope:{$this->service}:{$this->privilege}";
        if (
\count($this->params)) {
            
$uri .= '?' \http_build_query($this->params'''&');
        }
        return 
$uri;
    }

    
/**
     * Parse a scope URI into a ScopeURI object
     *
     * @param string $uri The scope URI
     * @return ScopeURI The parsed scope uri
     * @throws \UnexpectedValueException
     */
    
public static function parse(string $uri): ScopeURI {
        if (
\strpos($uri'scope:') !== 0) {
            throw new 
\UnexpectedValueException(
                
'Not a scope URI according to scheme');
        }

        
$parts \explode('?'$uri1);
        
$params null;

        if (
\count($parts) > 1) {
            
\parse_str($parts[1], $params);
        }

        
$parts \explode(':'$parts[0], 2);

        if (
\count($parts) !== 3) {
            throw new 
\UnexpectedValueException(
                
'Not enough parts for scope URI');
        }

        [
$scheme$service$privilege] = $parts;
        return new 
ScopeURI($service$privilege$params);
    }
}

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