Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
vinance copy /
core /
app /
Exceptions /
Delete
Unzip
Name
Size
Permission
Date
Action
Handler.php
1.28
KB
-rw-rw-r--
2024-03-02 11:37
Save
Rename
<?php namespace App\Exceptions; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Throwable; class Handler extends ExceptionHandler { /** * A list of the exception types that are not reported. * * @var array<int, class-string<Throwable>> */ protected $dontReport = [ // ]; /** * A list of the inputs that are never flashed for validation exceptions. * * @var array<int, string> */ protected $dontFlash = [ 'current_password', 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. * * @return void */ public function register() { $this->reportable(function (Throwable $e) { }); } protected function unauthenticated($request, AuthenticationException $exception) { if (request()->is('api/*')) { $notify[] = 'Unauthorized request'; return response()->json([ 'remark' => 'unauthenticated', 'status' => 'error', 'message' => ['error' => $notify], ]); } else { return redirect()->route('user.login'); } } }