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


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

namespace Illuminate\Auth;

use 
Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use 
Illuminate\Contracts\Auth\UserProvider;

/**
 * These methods are typically the same across all guards.
 */
trait GuardHelpers
{
    
/**
     * The currently authenticated user.
     *
     * @var \Illuminate\Contracts\Auth\Authenticatable|null
     */
    
protected $user;

    
/**
     * The user provider implementation.
     *
     * @var \Illuminate\Contracts\Auth\UserProvider
     */
    
protected $provider;

    
/**
     * Determine if the current user is authenticated. If not, throw an exception.
     *
     * @return \Illuminate\Contracts\Auth\Authenticatable
     *
     * @throws \Illuminate\Auth\AuthenticationException
     */
    
public function authenticate()
    {
        if (! 
is_null($user $this->user())) {
            return 
$user;
        }

        throw new 
AuthenticationException;
    }

    
/**
     * Determine if the guard has a user instance.
     *
     * @return bool
     */
    
public function hasUser()
    {
        return ! 
is_null($this->user);
    }

    
/**
     * Determine if the current user is authenticated.
     *
     * @return bool
     */
    
public function check()
    {
        return ! 
is_null($this->user());
    }

    
/**
     * Determine if the current user is a guest.
     *
     * @return bool
     */
    
public function guest()
    {
        return ! 
$this->check();
    }

    
/**
     * Get the ID for the currently authenticated user.
     *
     * @return int|string|null
     */
    
public function id()
    {
        if (
$this->user()) {
            return 
$this->user()->getAuthIdentifier();
        }
    }

    
/**
     * Set the current user.
     *
     * @param  \Illuminate\Contracts\Auth\Authenticatable  $user
     * @return $this
     */
    
public function setUser(AuthenticatableContract $user)
    {
        
$this->user $user;

        return 
$this;
    }

    
/**
     * Forget the current user.
     *
     * @return $this
     */
    
public function forgetUser()
    {
        
$this->user null;

        return 
$this;
    }

    
/**
     * Get the user provider used by the guard.
     *
     * @return \Illuminate\Contracts\Auth\UserProvider
     */
    
public function getProvider()
    {
        return 
$this->provider;
    }

    
/**
     * Set the user provider used by the guard.
     *
     * @param  \Illuminate\Contracts\Auth\UserProvider  $provider
     * @return void
     */
    
public function setProvider(UserProvider $provider)
    {
        
$this->provider $provider;
    }
}

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