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 : 18.188.171.53
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
facade /
ignition /
src /
ErrorPage /
Delete
Unzip
Name
Size
Permission
Date
Action
ErrorPageHandler.php
2.11
KB
-rw-r--r--
2020-11-17 16:24
ErrorPageViewModel.php
5.02
KB
-rw-r--r--
2020-11-17 16:24
IgnitionWhoopsHandler.php
1.1
KB
-rw-r--r--
2020-11-17 16:24
Renderer.php
968
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace Facade\Ignition\ErrorPage; use Error; use ErrorException; use Whoops\Handler\Handler; class IgnitionWhoopsHandler extends Handler { /** @var \Facade\Ignition\ErrorPage\ErrorPageHandler */ protected $errorPageHandler; /** @var \Throwable */ protected $exception; public function __construct(ErrorPageHandler $errorPageHandler) { $this->errorPageHandler = $errorPageHandler; } public function handle(): ?int { try { $this->errorPageHandler->handle($this->exception); } catch (Error $error) { // Errors aren't caught by Whoops. // Convert the error to an exception and throw again. throw new ErrorException( $error->getMessage(), $error->getCode(), 1, $error->getFile(), $error->getLine(), $error ); } return Handler::QUIT; } /** @param \Throwable $exception */ public function setException($exception): void { $this->exception = $exception; } }