## Update firewall filtering to ban IP addresses with too many password failures. ######################################## ## ## Execute a domain transition to run fail2ban. ## ## ## ## Domain allowed to transition. ## ## # interface(`fail2ban_domtrans',` gen_require(` type fail2ban_t, fail2ban_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, fail2ban_exec_t, fail2ban_t) ') ######################################## ## ## Execute the fail2ban client in ## the fail2ban client domain. ## ## ## ## Domain allowed to transition. ## ## # interface(`fail2ban_domtrans_client',` gen_require(` type fail2ban_client_t, fail2ban_client_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, fail2ban_client_exec_t, fail2ban_client_t) ') ######################################## ## ## Execute fail2ban client in the ## fail2ban client domain, and allow ## the specified role the fail2ban ## client domain. ## ## ## ## Domain allowed to transition. ## ## ## ## ## Role allowed access. ## ## # interface(`fail2ban_run_client',` gen_require(` attribute_role fail2ban_client_roles; ') fail2ban_domtrans_client($1) roleattribute $2 fail2ban_client_roles; ') ##################################### ## ## Connect to fail2ban over a ## unix domain stream socket. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_stream_connect',` gen_require(` type fail2ban_t, fail2ban_var_run_t; ') files_search_pids($1) stream_connect_pattern($1, fail2ban_var_run_t, fail2ban_var_run_t, fail2ban_t) ') ######################################## ## ## Read and write inherited temporary files. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_rw_inherited_tmp_files',` gen_require(` type fail2ban_tmp_t; ') files_search_tmp($1) allow $1 fail2ban_tmp_t:file { read write }; ') ######################################## ## ## Do not audit attempts to use ## fail2ban file descriptors. ## ## ## ## Domain to not audit. ## ## # interface(`fail2ban_dontaudit_use_fds',` gen_require(` type fail2ban_t; ') dontaudit $1 fail2ban_t:fd use; ') ######################################## ## ## Do not audit attempts to read and ## write fail2ban unix stream sockets ## ## ## ## Domain to not audit. ## ## # interface(`fail2ban_dontaudit_rw_stream_sockets',` gen_require(` type fail2ban_t; ') dontaudit $1 fail2ban_t:unix_stream_socket { read write }; ') ######################################## ## ## Read and write fail2ban unix ## stream sockets. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_rw_stream_sockets',` gen_require(` type fail2ban_t; ') allow $1 fail2ban_t:unix_stream_socket rw_stream_socket_perms; ') ######################################## ## ## Read fail2ban lib files. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_read_lib_files',` gen_require(` type fail2ban_var_lib_t; ') files_search_var_lib($1) allow $1 fail2ban_var_lib_t:file read_file_perms; ') ######################################## ## ## Read fail2ban log files. ## ## ## ## Domain allowed access. ## ## ## # interface(`fail2ban_read_log',` gen_require(` type fail2ban_log_t; ') logging_search_logs($1) allow $1 fail2ban_log_t:file read_file_perms; ') ######################################## ## ## Append fail2ban log files. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_append_log',` gen_require(` type fail2ban_log_t; ') logging_search_logs($1) allow $1 fail2ban_log_t:file append_file_perms; ') ######################################## ## ## Read fail2ban pid files. ## ## ## ## Domain allowed access. ## ## # interface(`fail2ban_read_pid_files',` gen_require(` type fail2ban_var_run_t; ') files_search_pids($1) allow $1 fail2ban_var_run_t:file read_file_perms; ') ######################################## ## ## All of the rules required to ## administrate an fail2ban environment. ## ## ## ## Domain allowed access. ## ## ## ## ## Role allowed access. ## ## ## # interface(`fail2ban_admin',` gen_require(` type fail2ban_t, fail2ban_log_t, fail2ban_tmp_t; type fail2ban_var_run_t, fail2ban_initrc_exec_t; type fail2ban_var_lib_t, fail2ban_client_t; ') allow $1 { fail2ban_t fail2ban_client_t }:process { ptrace signal_perms }; ps_process_pattern($1, { fail2ban_t fail2ban_client_t }) init_startstop_service($1, $2, fail2ban_t, fail2ban_initrc_exec_t) logging_list_logs($1) admin_pattern($1, fail2ban_log_t) files_list_pids($1) admin_pattern($1, fail2ban_var_run_t) files_search_var_lib($1) admin_pattern($1, fail2ban_var_lib_t) files_search_tmp($1) admin_pattern($1, fail2ban_tmp_t) fail2ban_run_client($1, $2) ')