!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/Auth/Passwords/   drwxr-xr-x
Free 13.05 GB of 57.97 GB (22.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Auth\Passwords;

use 
Illuminate\Contracts\Auth\PasswordBrokerFactory as FactoryContract;
use 
Illuminate\Support\Str;
use 
InvalidArgumentException;

/**
 * @mixin \Illuminate\Contracts\Auth\PasswordBroker
 */
class PasswordBrokerManager implements FactoryContract
{
    
/**
     * The application instance.
     *
     * @var \Illuminate\Contracts\Foundation\Application
     */
    
protected $app;

    
/**
     * The array of created "drivers".
     *
     * @var array
     */
    
protected $brokers = [];

    
/**
     * Create a new PasswordBroker manager instance.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    
public function __construct($app)
    {
        
$this->app $app;
    }

    
/**
     * Attempt to get the broker from the local cache.
     *
     * @param  string|null  $name
     * @return \Illuminate\Contracts\Auth\PasswordBroker
     */
    
public function broker($name null)
    {
        
$name $name ?: $this->getDefaultDriver();

        return 
$this->brokers[$name] ?? ($this->brokers[$name] = $this->resolve($name));
    }

    
/**
     * Resolve the given broker.
     *
     * @param  string  $name
     * @return \Illuminate\Contracts\Auth\PasswordBroker
     *
     * @throws \InvalidArgumentException
     */
    
protected function resolve($name)
    {
        
$config $this->getConfig($name);

        if (
is_null($config)) {
            throw new 
InvalidArgumentException("Password resetter [{$name}] is not defined.");
        }

        
// The password broker uses a token repository to validate tokens and send user
        // password e-mails, as well as validating that password reset process as an
        // aggregate service of sorts providing a convenient interface for resets.
        
return new PasswordBroker(
            
$this->createTokenRepository($config),
            
$this->app['auth']->createUserProvider($config['provider'] ?? null)
        );
    }

    
/**
     * Create a token repository instance based on the given configuration.
     *
     * @param  array  $config
     * @return \Illuminate\Auth\Passwords\TokenRepositoryInterface
     */
    
protected function createTokenRepository(array $config)
    {
        
$key $this->app['config']['app.key'];

        if (
Str::startsWith($key'base64:')) {
            
$key base64_decode(substr($key7));
        }

        
$connection $config['connection'] ?? null;

        return new 
DatabaseTokenRepository(
            
$this->app['db']->connection($connection),
            
$this->app['hash'],
            
$config['table'],
            
$key,
            
$config['expire'],
            
$config['throttle'] ?? 0
        
);
    }

    
/**
     * Get the password broker configuration.
     *
     * @param  string  $name
     * @return array
     */
    
protected function getConfig($name)
    {
        return 
$this->app['config']["auth.passwords.{$name}"];
    }

    
/**
     * Get the default password broker name.
     *
     * @return string
     */
    
public function getDefaultDriver()
    {
        return 
$this->app['config']['auth.defaults.passwords'];
    }

    
/**
     * Set the default password broker name.
     *
     * @param  string  $name
     * @return void
     */
    
public function setDefaultDriver($name)
    {
        
$this->app['config']['auth.defaults.passwords'] = $name;
    }

    
/**
     * Dynamically call the default driver instance.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        return 
$this->broker()->{$method}(...$parameters);
    }
}

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