-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove audit tasks, update to V1R15, and refactor cat 1 and 2 checks (#…
…108) * Fixes #105 #97 #103 #94 #48 #23 * removal of audit tasks from cat 1 and v1R15 cleanup * housekeeping items and cleanup * replace always_run w/ check_mode, initial pass of V1R15 STIG updates for cat 2 and 3 tasks, fix some issues with iptables tasks * bump minimum ansible version to 2.2 * add sensible default iptables configs so the role doesnt lock users out * remove not automated tasks and redistribute to other locations * add handlers for saving iptables rules to disk and fix up the aide init handler * finish moving cat 1 and 2 audit files out of main task files * add variables for various tasks * remove not automated task file from main * document a not automated stig check * remove V-38624 for V1R15 revision and ignore an ansible warning * cat 2 - remove audit tasks, more updates for V1R15 revision, and refactor tasks * README updates and some default var changes
- Loading branch information
1 parent
ca6e1b8
commit d2e9dfc
Showing
19 changed files
with
2,691 additions
and
2,340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
*.swp | ||
*.pyc | ||
*.retry | ||
Vagrantfile | ||
.vagrant |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*filter | ||
:INPUT ACCEPT [0:0] | ||
:FORWARD ACCEPT [0:0] | ||
:OUTPUT ACCEPT [0:0] | ||
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | ||
-A INPUT -i lo -j ACCEPT | ||
-A INPUT -p icmpv6 -j ACCEPT | ||
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT | ||
-A INPUT -j REJECT --reject-with icmp6-adm-prohibited | ||
COMMIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*filter | ||
:INPUT ACCEPT [0:0] | ||
:FORWARD ACCEPT [0:0] | ||
:OUTPUT ACCEPT [0:0] | ||
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | ||
-A INPUT -i lo -j ACCEPT | ||
-A INPUT -p icmp -m icmp --icmp-type any -j ACCEPT | ||
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT | ||
-A INPUT -j REJECT --reject-with icmp-host-prohibited | ||
COMMIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.