!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/queuepro/vendor/laravel/framework/src/Illuminate/Foundation/Support/Providers/   drwxrwxr-x
Free 13.2 GB of 57.97 GB (22.78%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     RouteServiceProvider.php (3.07 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Foundation\Support\Providers;

use 
Closure;
use 
Illuminate\Contracts\Routing\UrlGenerator;
use 
Illuminate\Routing\Router;
use 
Illuminate\Support\ServiceProvider;
use 
Illuminate\Support\Traits\ForwardsCalls;

/**
 * @mixin \Illuminate\Routing\Router
 */
class RouteServiceProvider extends ServiceProvider
{
    use 
ForwardsCalls;

    
/**
     * The controller namespace for the application.
     *
     * @var string|null
     */
    
protected $namespace;

    
/**
     * The callback that should be used to load the application's routes.
     *
     * @var \Closure|null
     */
    
protected $loadRoutesUsing;

    
/**
     * Register any application services.
     *
     * @return void
     */
    
public function register()
    {
        
$this->booted(function () {
            
$this->setRootControllerNamespace();

            if (
$this->routesAreCached()) {
                
$this->loadCachedRoutes();
            } else {
                
$this->loadRoutes();

                
$this->app->booted(function () {
                    
$this->app['router']->getRoutes()->refreshNameLookups();
                    
$this->app['router']->getRoutes()->refreshActionLookups();
                });
            }
        });
    }

    
/**
     * Bootstrap any application services.
     *
     * @return void
     */
    
public function boot()
    {
        
//
    
}

    
/**
     * Register the callback that will be used to load the application's routes.
     *
     * @param  \Closure  $routesCallback
     * @return $this
     */
    
protected function routes(Closure $routesCallback)
    {
        
$this->loadRoutesUsing $routesCallback;

        return 
$this;
    }

    
/**
     * Set the root controller namespace for the application.
     *
     * @return void
     */
    
protected function setRootControllerNamespace()
    {
        if (! 
is_null($this->namespace)) {
            
$this->app[UrlGenerator::class]->setRootControllerNamespace($this->namespace);
        }
    }

    
/**
     * Determine if the application routes are cached.
     *
     * @return bool
     */
    
protected function routesAreCached()
    {
        return 
$this->app->routesAreCached();
    }

    
/**
     * Load the cached routes for the application.
     *
     * @return void
     */
    
protected function loadCachedRoutes()
    {
        
$this->app->booted(function () {
            require 
$this->app->getCachedRoutesPath();
        });
    }

    
/**
     * Load the application routes.
     *
     * @return void
     */
    
protected function loadRoutes()
    {
        if (! 
is_null($this->loadRoutesUsing)) {
            
$this->app->call($this->loadRoutesUsing);
        } elseif (
method_exists($this'map')) {
            
$this->app->call([$this'map']);
        }
    }

    
/**
     * Pass dynamic methods onto the router instance.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        return 
$this->forwardCallTo(
            
$this->app->make(Router::class), $method$parameters
        
);
    }
}

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