!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/gwp.picotech.app/public_html/vendor/laravel/framework/src/Illuminate/Support/   drwxr-xr-x
Free 28.61 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Support;

use 
ArrayAccess;
use 
ArrayObject;
use 
Illuminate\Support\Traits\Macroable;

class 
Optional implements ArrayAccess
{
    use 
Macroable {
        
__call as macroCall;
    }

    
/**
     * The underlying object.
     *
     * @var mixed
     */
    
protected $value;

    
/**
     * Create a new optional instance.
     *
     * @param  mixed  $value
     */
    
public function __construct($value)
    {
        
$this->value $value;
    }

    
/**
     * Dynamically access a property on the underlying object.
     *
     * @param  string  $key
     * @return mixed
     */
    
public function __get($key)
    {
        if (
is_object($this->value)) {
            return 
$this->value->{$key} ?? null;
        }
    }

    
/**
     * Dynamically check a property exists on the underlying object.
     *
     * @param  mixed  $name
     * @return bool
     */
    
public function __isset($name)
    {
        if (
is_object($this->value)) {
            return isset(
$this->value->{$name});
        }

        if (
is_array($this->value) || $this->value instanceof ArrayObject) {
            return isset(
$this->value[$name]);
        }

        return 
false;
    }

    
/**
     * Determine if an item exists at an offset.
     *
     * @param  mixed  $key
     * @return bool
     */
    
public function offsetExists($key): bool
    
{
        return 
Arr::accessible($this->value) && Arr::exists($this->value$key);
    }

    
/**
     * Get an item at a given offset.
     *
     * @param  mixed  $key
     * @return mixed
     */
    
public function offsetGet($key): mixed
    
{
        return 
Arr::get($this->value$key);
    }

    
/**
     * Set the item at a given offset.
     *
     * @param  mixed  $key
     * @param  mixed  $value
     * @return void
     */
    
public function offsetSet($key$value): void
    
{
        if (
Arr::accessible($this->value)) {
            
$this->value[$key] = $value;
        }
    }

    
/**
     * Unset the item at a given offset.
     *
     * @param  string  $key
     * @return void
     */
    
public function offsetUnset($key): void
    
{
        if (
Arr::accessible($this->value)) {
            unset(
$this->value[$key]);
        }
    }

    
/**
     * Dynamically pass a method to the underlying object.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        if (static::
hasMacro($method)) {
            return 
$this->macroCall($method$parameters);
        }

        if (
is_object($this->value)) {
            return 
$this->value->{$method}(...$parameters);
        }
    }
}

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