!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/laravel/framework/src/Illuminate/Routing/Middleware/   drwxr-xr-x
Free 12.98 GB of 57.97 GB (22.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Routing\Middleware;

use 
Closure;
use 
Illuminate\Cache\RateLimiter;
use 
Illuminate\Contracts\Redis\Factory as Redis;
use 
Illuminate\Redis\Limiters\DurationLimiter;

class 
ThrottleRequestsWithRedis extends ThrottleRequests
{
    
/**
     * The Redis factory implementation.
     *
     * @var \Illuminate\Contracts\Redis\Factory
     */
    
protected $redis;

    
/**
     * The timestamp of the end of the current duration by key.
     *
     * @var array
     */
    
public $decaysAt = [];

    
/**
     * The number of remaining slots by key.
     *
     * @var array
     */
    
public $remaining = [];

    
/**
     * Create a new request throttler.
     *
     * @param  \Illuminate\Cache\RateLimiter  $limiter
     * @param  \Illuminate\Contracts\Redis\Factory  $redis
     * @return void
     */
    
public function __construct(RateLimiter $limiterRedis $redis)
    {
        
parent::__construct($limiter);

        
$this->redis $redis;
    }

    
/**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @param  array  $limits
     * @return \Symfony\Component\HttpFoundation\Response
     *
     * @throws \Illuminate\Http\Exceptions\ThrottleRequestsException
     */
    
protected function handleRequest($requestClosure $next, array $limits)
    {
        foreach (
$limits as $limit) {
            if (
$this->tooManyAttempts($limit->key$limit->maxAttempts$limit->decayMinutes)) {
                throw 
$this->buildException($request$limit->key$limit->maxAttempts$limit->responseCallback);
            }
        }

        
$response $next($request);

        foreach (
$limits as $limit) {
            
$response $this->addHeaders(
                
$response,
                
$limit->maxAttempts,
                
$this->calculateRemainingAttempts($limit->key$limit->maxAttempts)
            );
        }

        return 
$response;
    }

    
/**
     * Determine if the given key has been "accessed" too many times.
     *
     * @param  string  $key
     * @param  int  $maxAttempts
     * @param  int  $decayMinutes
     * @return mixed
     */
    
protected function tooManyAttempts($key$maxAttempts$decayMinutes)
    {
        
$limiter = new DurationLimiter(
            
$this->redis$key$maxAttempts$decayMinutes 60
        
);

        return 
tap(! $limiter->acquire(), function () use ($key$limiter) {
            [
$this->decaysAt[$key], $this->remaining[$key]] = [
                
$limiter->decaysAt$limiter->remaining,
            ];
        });
    }

    
/**
     * Calculate the number of remaining attempts.
     *
     * @param  string  $key
     * @param  int  $maxAttempts
     * @param  int|null  $retryAfter
     * @return int
     */
    
protected function calculateRemainingAttempts($key$maxAttempts$retryAfter null)
    {
        return 
is_null($retryAfter) ? $this->remaining[$key] : 0;
    }

    
/**
     * Get the number of seconds until the lock is released.
     *
     * @param  string  $key
     * @return int
     */
    
protected function getTimeUntilNextRetry($key)
    {
        return 
$this->decaysAt[$key] - $this->currentTime();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]--