Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.158.137
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
app /
Http /
Controllers /
Auth /
Delete
Unzip
Name
Size
Permission
Date
Action
ForgotPasswordController.php
834
B
-rw-r--r--
2021-02-02 18:24
LoginController.php
943
B
-rw-r--r--
2021-02-02 18:24
RegisterController.php
1.85
KB
-rw-r--r--
2021-02-02 18:24
ResetPasswordController.php
952
B
-rw-r--r--
2021-02-02 18:24
VerificationController.php
1.05
KB
-rw-r--r--
2021-02-02 18:24
Save
Rename
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\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 re-sent if the user didn't receive the original email message. | */ use VerifiesEmails; /** * Where to redirect users after verification. * * @var string */ protected $redirectTo = '/home'; /** * 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'); } }