Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.12.34.150
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
libexec /
mc /
extfs.d /
[ HOME SHELL ]
Name
Size
Permission
Action
README
7.29
KB
-rw-r--r--
README.extfs
1.11
KB
-rw-r--r--
a+
3.13
KB
-rwxr-xr-x
apt+
9.5
KB
-rwxr-xr-x
audio
1.29
KB
-rwxr-xr-x
bpp
1.18
KB
-rwxr-xr-x
changesetfs
2.5
KB
-rwxr-xr-x
deb
5.34
KB
-rwxr-xr-x
deba
3
KB
-rwxr-xr-x
debd
10.26
KB
-rwxr-xr-x
dpkg+
8.79
KB
-rwxr-xr-x
gitfs+
782
B
-rwxr-xr-x
hp48+
3.58
KB
-rwxr-xr-x
iso9660
5.65
KB
-rwxr-xr-x
lslR
1.38
KB
-rwxr-xr-x
mailfs
5.59
KB
-rwxr-xr-x
patchfs
10.88
KB
-rwxr-xr-x
patchsetfs
2.26
KB
-rwxr-xr-x
rpm
13.25
KB
-rwxr-xr-x
rpms+
1.47
KB
-rwxr-xr-x
trpm
7.65
KB
-rwxr-xr-x
u7z
4.71
KB
-rwxr-xr-x
uace
1.47
KB
-rwxr-xr-x
ualz
1.25
KB
-rwxr-xr-x
uar
1.29
KB
-rwxr-xr-x
uarc
1.79
KB
-rwxr-xr-x
uarj
1.62
KB
-rwxr-xr-x
ucab
734
B
-rwxr-xr-x
uha
969
B
-rwxr-xr-x
ulha
3.78
KB
-rwxr-xr-x
ulib
2.76
KB
-rwxr-xr-x
urar
4.37
KB
-rwxr-xr-x
uzip
14.9
KB
-rwxr-xr-x
uzoo
1.56
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ulib
#! /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 (! defined $tmpdir or $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); }
Close