📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: Exception.pm
package Imunify::Exception; use strict; use warnings FATAL => 'all'; use Cpanel::JSON; use Imunify::Render; sub new { my $class = shift; my $self = { 'message' => shift || undef }; return bless $self, $class; } sub getMessage() { my ($self) = @_; return $self->{'message'}; } sub asJSON() { my ($self) = @_; my %error = ( 'messages' => [$self->getMessage()], 'result' => 'error', ); Imunify::Render::JSONHeader(Imunify::Render->HTTP_STATUS_OK); print Cpanel::JSON::SafeDump(\%error); exit 1; } 1;
Save