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 : 52.15.165.239
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 # # 1999 (c) Piotr Roszatycki <dexter@debian.org> # This software is under GNU license # last modification: 1999-12-08 # # deba sub quote { $_ = shift(@_); s/([^\w\/.+-])/\\$1/g; return($_); } sub list { my($qarchive)=@_; $qarchive = quote($qarchive); chop($date=`LC_ALL=C date "+%m-%d-%Y %H:%M"`); chop($info_size=`apt-cache show $qarchive | wc -c`); $install_size=length($pressinstall); $upgrade_size=length($pressupgrade); print "-r--r--r-- 1 root root $info_size $date INFO\n"; chop($debd = `dpkg -s $qarchive | grep -i ^Version | sed 's/^version: //i'`); chop($deba = `apt-cache show $qarchive | grep -i ^Version | sed 's/^version: //i'`); if( ! $debd ) { print "-r-xr--r-- 1 root root $install_size $date INSTALL\n"; } elsif( $debd ne $deba ) { print "-r-xr--r-- 1 root root $upgrade_size $date UPGRADE\n"; } } sub copyout { my($archive,$filename,$destfile)=@_; my $qarchive = quote($archive); my $qdestfile = quote($destfile); if($filename eq "INFO") { system("apt-cache show $qarchive > $qdestfile"); } elsif($filename eq "INSTALL") { if ( open(FILEOUT, "> $destfile") ) { print FILEOUT $pressinstall; close FILEOUT; system("chmod a+x $qdestfile"); } } elsif($filename eq "UPGRADE") { if ( open(FILEOUT, ">, $destfile") ) { print FILEOUT $pressupgrade; close FILEOUT; system("chmod a+x $qdestfile"); } } else { die "extfs: $filename: No such file or directory\n"; } } sub run { my($archive,$filename)=@_; my $qarchive = quote($archive); if($filename eq "INSTALL") { system("apt-get install $qarchive"); } elsif($filename eq "UPGRADE") { system("apt-get install $qarchive"); } else { die "extfs: $filename: Permission denied\n"; } } $pressinstall=<<EOInstall; WARNING Don\'t use this method if you are not willing to install this package... This is not a real file. It is a way to install the package you are browsing. To install this package go back to the panel and press Enter on this file. EOInstall $pressupgrade=<<EOInstall; WARNING Don\'t use this method if you are not willing to upgrade this package... This is not a real file. It is a way to upgrade the package you are browsing. To upgrade this package go back to the panel and press Enter on this file. EOInstall umask 077; chop($name = `if [ -f "$ARGV[1]" ]; then cat $ARGV[1]; else echo $ARGV[1]; fi`); $name =~ s%.*/([0-9a-z.-]*)_.*%$1%; exit 1 unless $name; if($ARGV[0] eq "list") { &list($name); exit 0; } elsif($ARGV[0] eq "copyout") { ©out($name,$ARGV[2],$ARGV[3]); exit 0; } elsif($ARGV[0] eq "run") { &run($name,$ARGV[2]); exit 0; } exit 1;