%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/fail2ban/ |
Upload File : |
#!/usr/bin/perl # Show a form for editing or creating an action use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; 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'});