UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_f18f434bfd08
/
app
/
Http
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Kernel.php
<?php namespace EstudioLMS\Http; use Illuminate\Foundation\Http\Kernel as HttpKernel; /** * Class Kernel * @package EstudioLMS\Http */ class Kernel extends HttpKernel { /** * The application's global HTTP middleware stack. * * @var array */ protected $middleware = [ 'Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode', 'Illuminate\Cookie\Middleware\EncryptCookies', 'Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse', 'Illuminate\Session\Middleware\StartSession', 'Illuminate\View\Middleware\ShareErrorsFromSession', #'EstudioLMS\Http\Middleware\VerifyCsrfToken', 'EstudioLMS\Http\Middleware\Languages', #'EstudioLMS\Http\Middleware\SessionTimeout', 'EstudioLMS\Http\Middleware\CheckForSuspended' ]; /** * The application's route middleware. * * @var array */ protected $routeMiddleware = [ 'auth' => 'EstudioLMS\Http\Middleware\Authenticate', 'auth.basic' => 'Illuminate\Auth\Middleware\AuthenticateWithBasicAuth', 'guest' => 'EstudioLMS\Http\Middleware\RedirectIfAuthenticated', 'student' => 'EstudioLMS\Http\Middleware\AuthenticateStudent', 'teacher' => 'EstudioLMS\Http\Middleware\AuthenticateTeacher', 'admins' => 'EstudioLMS\Http\Middleware\AuthenticateAdmins', 'admin_teacher' => 'EstudioLMS\Http\Middleware\AuthenticateAdminOrTeacher', 'cors' => 'EstudioLMS\Http\Middleware\Cors', 'timeout' => 'EstudioLMS\Http\Middleware\SessionTimeout', 'owner' => 'EstudioLMS\Http\Middleware\AuthenticateOwner', 'ajaxonly' => 'EstudioLMS\Http\Middleware\AjaxOnly' ]; }
Copyright © 2026 - UnknownSec