shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
laravel
/
fortify
/
src
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
LoginRateLimiter.php
<?php namespace Laravel\Fortify; use Illuminate\Cache\RateLimiter; use Illuminate\Http\Request; use Illuminate\Support\Str; class LoginRateLimiter { /** * The login rate limiter instance. * * @var \Illuminate\Cache\RateLimiter */ protected $limiter; /** * Create a new login rate limiter instance. * * @param \Illuminate\Cache\RateLimiter $limiter * @return void */ public function __construct(RateLimiter $limiter) { $this->limiter = $limiter; } /** * Get the number of attempts for the given key. * * @param \Illuminate\Http\Request $request * @return mixed */ public function attempts(Request $request) { return $this->limiter->attempts($this->throttleKey($request)); } /** * Determine if the user has too many failed login attempts. * * @param \Illuminate\Http\Request $request * @return bool */ public function tooManyAttempts(Request $request) { return $this->limiter->tooManyAttempts($this->throttleKey($request), 5); } /** * Increment the login attempts for the user. * * @param \Illuminate\Http\Request $request * @return void */ public function increment(Request $request) { $this->limiter->hit($this->throttleKey($request), 60); } /** * Determine the number of seconds until logging in is available again. * * @param \Illuminate\Http\Request $request * @return int */ public function availableIn(Request $request) { return $this->limiter->availableIn($this->throttleKey($request)); } /** * Clear the login locks for the given user credentials. * * @param \Illuminate\Http\Request $request * @return void */ public function clear(Request $request) { $this->limiter->clear($this->throttleKey($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(Fortify::username())).'|'.$request->ip()); } }
© 2026 UnknownSec