Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.95.186
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
chat-demo-master /
app /
Http /
Middleware /
Delete
Unzip
Name
Size
Permission
Date
Action
Authenticate.php
464
B
-rw-r--r--
2021-02-02 18:24
CheckForMaintenanceMode.php
335
B
-rw-r--r--
2021-02-02 18:24
EncryptCookies.php
294
B
-rw-r--r--
2021-02-02 18:24
RedirectIfAuthenticated.php
523
B
-rw-r--r--
2021-02-02 18:24
TrimStrings.php
340
B
-rw-r--r--
2021-02-02 18:24
TrustProxies.php
429
B
-rw-r--r--
2021-02-02 18:24
VerifyCsrfToken.php
463
B
-rw-r--r--
2021-02-02 18:24
Save
Rename
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Support\Facades\Auth; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string|null $guard * @return mixed */ public function handle($request, Closure $next, $guard = null) { if (Auth::guard($guard)->check()) { return redirect('/home'); } return $next($request); } }