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 /
fail2ban /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
110
B
-rw-r--r--
atboot.cgi
866
B
-rwxr-xr-x
backup_config.pl
718
B
-rwxr-xr-x
config
100
B
-rw-r--r--
config-debian-linux
118
B
-rw-r--r--
config-redhat-linux
118
B
-rw-r--r--
config-syno-linux
100
B
-rw-r--r--
config.info
196
B
-rw-r--r--
config.info.ca
245
B
-rw-r--r--
config.info.ca.UTF-8
249
B
-rw-r--r--
config.info.de
206
B
-rw-r--r--
config.info.de.UTF-8
206
B
-rw-r--r--
config.info.ms_MY
201
B
-rw-r--r--
config.info.ms_MY.UTF-8
201
B
-rw-r--r--
config.info.no
203
B
-rw-r--r--
config.info.no.UTF-8
203
B
-rw-r--r--
config.info.pl
226
B
-rw-r--r--
config.info.pl.UTF-8
232
B
-rw-r--r--
delete_actions.cgi
824
B
-rwxr-xr-x
delete_filters.cgi
824
B
-rwxr-xr-x
delete_jails.cgi
571
B
-rwxr-xr-x
edit_action.cgi
2.07
KB
-rwxr-xr-x
edit_config.cgi
1.62
KB
-rwxr-xr-x
edit_filter.cgi
1.62
KB
-rwxr-xr-x
edit_jail.cgi
3.85
KB
-rwxr-xr-x
edit_jaildef.cgi
2.55
KB
-rwxr-xr-x
edit_manual.cgi
1
KB
-rwxr-xr-x
fail2ban-lib.pl
13.35
KB
-rw-r--r--
index.cgi
2.04
KB
-rwxr-xr-x
install_check.pl
412
B
-rwxr-xr-x
list_actions.cgi
1.1
KB
-rwxr-xr-x
list_filters.cgi
1.15
KB
-rwxr-xr-x
list_jails.cgi
1.5
KB
-rwxr-xr-x
log_parser.pl
751
B
-rwxr-xr-x
module.info
201
B
-rw-r--r--
module.info.ca
148
B
-rw-r--r--
module.info.ca.UTF-8
161
B
-rw-r--r--
module.info.de
142
B
-rw-r--r--
module.info.de.UTF-8
154
B
-rw-r--r--
module.info.ms_MY
167
B
-rw-r--r--
module.info.ms_MY.UTF-8
179
B
-rw-r--r--
module.info.no
36
B
-rw-r--r--
module.info.no.UTF-8
42
B
-rw-r--r--
module.info.pl
153
B
-rw-r--r--
module.info.pl.UTF-8
170
B
-rw-r--r--
restart.cgi
281
B
-rwxr-xr-x
save_action.cgi
1.81
KB
-rwxr-xr-x
save_config.cgi
922
B
-rwxr-xr-x
save_filter.cgi
1.64
KB
-rwxr-xr-x
save_jail.cgi
3.66
KB
-rwxr-xr-x
save_jaildef.cgi
1.44
KB
-rwxr-xr-x
save_manual.cgi
567
B
-rwxr-xr-x
start.cgi
273
B
-rwxr-xr-x
stop.cgi
269
B
-rwxr-xr-x
syslog_logs.pl
527
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_action.cgi
#!/usr/bin/perl # Show a form for editing or creating an action use strict; use warnings; require './fail2ban-lib.pl'; our (%in, %text); &ReadParse(); my ($action, $def); # Show header and get the action object if ($in{'new'}) { &ui_print_header(undef, $text{'action_title1'}, ""); $action = [ ]; $def = { 'members' => [ ] }; } else { &ui_print_header(undef, $text{'action_title2'}, ""); ($action) = grep { $_->[0]->{'file'} eq $in{'file'} } &list_actions(); $action || &error($text{'action_egone'}); ($def) = grep { $_->{'name'} eq 'Definition' } @$action; $def || &error($text{'action_edefgone'}); } print &ui_form_start("save_action.cgi", "post"); print &ui_hidden("new", $in{'new'}); print &ui_hidden("file", $in{'file'}); print &ui_table_start($text{'action_header'}, undef, 2); # Service name if ($in{'new'}) { print &ui_table_row($text{'action_name'}, &ui_textbox("name", undef, 30)); } else { my $fname = &filename_to_name($def->{'file'}); print &ui_table_row($text{'action_name'}, "<tt>".&html_escape($fname)."</tt>"); } # Start command my $start = &find_value("actionstart", $def); print &ui_table_row($text{'action_start'}, &ui_textarea("start", $start, 5, 80, "hard")); # Stop command my $stop = &find_value("actionstop", $def); print &ui_table_row($text{'action_stop'}, &ui_textarea("stop", $stop, 5, 80, "hard")); # Command to ban a host my $ban = &find_value("actionban", $def); print &ui_table_row($text{'action_ban'}, &ui_textarea("ban", $ban, 5, 80, "hard")."<br>\n". $text{'action_desc'}); # Command to un-ban a host my $unban = &find_value("actionunban", $def); print &ui_table_row($text{'action_unban'}, &ui_textarea("unban", $unban, 5, 80, "hard")); # Check command my $check = &find_value("actioncheck", $def); print &ui_table_row($text{'action_check'}, &ui_textarea("check", $check, 5, 80, "hard")); print &ui_table_end(); if ($in{'new'}) { print &ui_form_end([ [ undef, $text{'create'} ] ]); } else { print &ui_form_end([ [ undef, $text{'save'} ], [ 'delete', $text{'delete'} ] ]); } &ui_print_footer("list_actions.cgi", $text{'actions_return'});
Close