Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.94
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data /
core /
app /
Http /
Middleware /
Delete
Unzip
Name
Size
Permission
Date
Action
AllowRegistration.php
558
B
-rw-r--r--
2021-10-03 08:49
Authenticate.php
558
B
-rw-r--r--
2022-09-22 09:07
AuthenticateApi.php
487
B
-rw-r--r--
2021-10-03 08:49
CheckForMaintenanceMode.php
335
B
-rw-r--r--
2021-10-03 08:49
CheckStatus.php
626
B
-rw-r--r--
2022-10-05 22:44
CheckStatusApi.php
540
B
-rw-r--r--
2021-10-03 08:49
Demo.php
682
B
-rw-r--r--
2022-10-05 22:37
EncryptCookies.php
294
B
-rw-r--r--
2021-10-03 08:49
LanguageMiddleware.php
726
B
-rw-r--r--
2021-10-03 08:49
PreventRequestsDuringMaintenance.php
353
B
-rw-r--r--
2021-10-03 08:49
RedirectIfAdmin.php
500
B
-rw-r--r--
2022-10-05 22:42
RedirectIfAuthenticated.php
548
B
-rw-r--r--
2021-10-03 08:49
RedirectIfNotAdmin.php
501
B
-rw-r--r--
2021-10-03 08:49
TrimStrings.php
368
B
-rw-r--r--
2021-10-03 08:49
TrustHosts.php
354
B
-rw-r--r--
2021-10-03 08:49
TrustProxies.php
585
B
-rw-r--r--
2021-10-03 08:49
VerifyCsrfToken.php
337
B
-rw-r--r--
2021-10-03 08:49
Save
Rename
<?php namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; use Closure; use Auth; class Authenticate extends Middleware { /** * Get the path the user should be redirected to when they are not authenticated. * * @param \Illuminate\Http\Request $request * @return string|null */ public function handle($request, Closure $next, ...$guards) { if (Auth::check()) { return $next($request); } return redirect()->route('user.login'); } }