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 : uc1541
#! /bin/sh # # UC1541 Virtual filesystem executive v0.1 # This is for accessing disk image files for the Commodore VIC20/C64/C128 # It requires the utility c1541 that comes bundled with Vice, the emulator # for the VIC20, C64, C128 and other computers made by Commodore. # Copyright (C) 2008 Jacques Pelletier # May be distributed under the terms of the GNU Public License # <jpelletier@ieee.org> # # Define your awk AWK=gawk # Define which archiver you are using with appropriate options C1541="c1541" # There are no time stamps in the disk image, so a bogus timestamp is displayed mc_c1541_fs_list() { $C1541 "$1" -list | gawk -v uid=${UID-0} ' BEGIN { FS = "\"" } /No LINES!/ { next } /BLOCKS FREE/ { next } $1 == 0 { next } { printf "-rw-r--r-- 1 %-8d %-8d %8d Jan 01 1980 00:00 %s\n", uid, 0, $1 * 256, $2 }' 2>/dev/null } # Command: copyout archivename storedfilename extractto # -read image 1541name [fsname] mc_c1541_fs_copyout() { $C1541 "$1" -read "$2" 2> /dev/null mv "$2" "$3" } # FIXME mc can't do chown of the file inside the archive # Command: copyin archivename storedfilename sourcefile # -write image fsname [1541name] mc_c1541_fs_copyin() { mv "$3" "$2" $C1541 "$1" -write "$2" 2> /dev/null } # Command: rm archivename storedfilename # -delete image files mc_c1541_fs_rm() { $C1541 "$1" -delete "$2" 2> /dev/null } # The main routine umask 077 cmd="$1" shift case "$cmd" in list) mc_c1541_fs_list "$@" ;; copyout) mc_c1541_fs_copyout "$@" ;; # copyin) mc_c1541_fs_copyin "$@" ;; rm) mc_c1541_fs_rm "$@" ;; *) exit 1 ;; esac exit 0
Close