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


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

namespace Laravel\Sanctum;

use 
Mockery;

class 
Sanctum
{
    
/**
     * The personal access client model class name.
     *
     * @var string
     */
    
public static $personalAccessTokenModel 'Laravel\\Sanctum\\PersonalAccessToken';

    
/**
     * A callback that can get the token from the request.
     *
     * @var callable|null
     */
    
public static $accessTokenRetrievalCallback;

    
/**
     * A callback that can add to the validation of the access token.
     *
     * @var callable|null
     */
    
public static $accessTokenAuthenticationCallback;

    
/**
     * Indicates if Sanctum's migrations will be run.
     *
     * @var bool
     */
    
public static $runsMigrations true;

    
/**
     * Get the current application URL from the "APP_URL" environment variable - with port.
     *
     * @return string
     */
    
public static function currentApplicationUrlWithPort()
    {
        
$appUrl config('app.url');

        return 
$appUrl ','.parse_url($appUrlPHP_URL_HOST).(parse_url($appUrlPHP_URL_PORT) ? ':'.parse_url($appUrlPHP_URL_PORT) : '') : '';
    }

    
/**
     * Set the current user for the application with the given abilities.
     *
     * @param  \Illuminate\Contracts\Auth\Authenticatable|\Laravel\Sanctum\HasApiTokens  $user
     * @param  array  $abilities
     * @param  string  $guard
     * @return \Illuminate\Contracts\Auth\Authenticatable
     */
    
public static function actingAs($user$abilities = [], $guard 'sanctum')
    {
        
$token Mockery::mock(self::personalAccessTokenModel())->shouldIgnoreMissing(false);

        if (
in_array('*'$abilities)) {
            
$token->shouldReceive('can')->withAnyArgs()->andReturn(true);
        } else {
            foreach (
$abilities as $ability) {
                
$token->shouldReceive('can')->with($ability)->andReturn(true);
            }
        }

        
$user->withAccessToken($token);

        if (isset(
$user->wasRecentlyCreated) && $user->wasRecentlyCreated) {
            
$user->wasRecentlyCreated false;
        }

        
app('auth')->guard($guard)->setUser($user);

        
app('auth')->shouldUse($guard);

        return 
$user;
    }

    
/**
     * Set the personal access token model name.
     *
     * @param  string  $model
     * @return void
     */
    
public static function usePersonalAccessTokenModel($model)
    {
        static::
$personalAccessTokenModel $model;
    }

    
/**
     * Specify a callback that should be used to fetch the access token from the request.
     *
     * @param  callable  $callback
     * @return void
     */
    
public static function getAccessTokenFromRequestUsing(callable $callback)
    {
        static::
$accessTokenRetrievalCallback $callback;
    }

    
/**
     * Specify a callback that should be used to authenticate access tokens.
     *
     * @param  callable  $callback
     * @return void
     */
    
public static function authenticateAccessTokensUsing(callable $callback)
    {
        static::
$accessTokenAuthenticationCallback $callback;
    }

    
/**
     * Determine if Sanctum's migrations should be run.
     *
     * @return bool
     */
    
public static function shouldRunMigrations()
    {
        return static::
$runsMigrations;
    }

    
/**
     * Configure Sanctum to not register its migrations.
     *
     * @return static
     */
    
public static function ignoreMigrations()
    {
        static::
$runsMigrations false;

        return new static;
    }

    
/**
     * Get the token model class name.
     *
     * @return string
     */
    
public static function personalAccessTokenModel()
    {
        return static::
$personalAccessTokenModel;
    }
}

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