You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
## Configure a RHEL9 based system to be complaint with Disa STIG
4
4
5
-
This role is based on RHEL 9 DISA STIG: [Version 1, Rel 2 released on Jan 24, 2024](https://dl.dod.cyber.mil/wp-content/uploads/stigs/U_RHEL_9_V1R2_STIG.zip).
5
+
This role is based on RHEL 9 DISA STIG: [Version 1, Rel 3 released on Apr 24, 2024](https://dl.dod.cyber.mil/wp-content/uploads/stigs/U_RHEL_9_V1R3_STIG.zip).
6
6
7
-
## Initial Relase from STIG, still many items that not quite aligned in the documentation
7
+
## Initial Release from STIG, still many items that not quite aligned in the documentation
Copy file name to clipboardExpand all lines: tasks/Cat1/RHEL-09-2xxxxx.yml
+11-12Lines changed: 11 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -52,19 +52,18 @@
52
52
- NIST800-53R4_AC-6
53
53
notify: Systemd_daemon_reload
54
54
block:
55
-
- name: HIGH | RHEL-09-211050 | PATCH | The systemd Ctrl-Alt-Delete burst key sequence in RHEL 9 must be disabled | systemctl disable
56
-
ansible.builtin.systemd:
57
-
enabled: false
58
-
masked: true
59
-
name: ctrl-alt-del.target
60
-
state: stopped
61
-
62
55
- name: HIGH | RHEL-09-211050 | PATCH | The systemd Ctrl-Alt-Delete burst key sequence in RHEL 9 must be disabled | Create symlink to /dev/null
63
56
ansible.builtin.file:
64
57
dest: /etc/systemd/system/ctrl-alt-del.target
65
58
src: /dev/null
66
59
state: link
67
60
61
+
- name: HIGH | RHEL-09-211050 | PATCH | The systemd Ctrl-Alt-Delete burst key sequence in RHEL 9 must be disabled | systemctl disable
62
+
ansible.builtin.systemd:
63
+
masked: true
64
+
name: ctrl-alt-del.target
65
+
state: stopped
66
+
68
67
- name: HIGH | RHEL-09-212020 | PATCH | RHEL 9 must require a unique superusers name upon booting into single-user and maintenance modes.
69
68
when:
70
69
- rhel_09_212020
@@ -182,19 +181,19 @@
182
181
183
182
- name: HIGH | RHEL-09-215060 | PATCH | RHEL 9 must not have a Trivial File Transfer Protocol (TFTP) server package installed.
184
183
when:
185
-
- "'tftp' in ansible_facts.packages"
184
+
- "'tftp-server' in ansible_facts.packages"
186
185
- rhel_09_215060
187
186
tags:
188
187
- RHEL-09-215060
189
188
- CAT1
190
189
- CCI-000366
191
190
- SRG-OS-000480-GPOS-00227
192
-
- SV-257835r925492_rule
191
+
- SV-257835r952171_rule
193
192
- V-257835
194
193
- NIST800-53R4_CM-6
195
194
- tftp
196
195
ansible.builtin.package:
197
-
name: tftp
196
+
name: tftp-server
198
197
state: absent
199
198
200
199
- name: HIGH | RHEL-09-231190 | AUDIT | All RHEL 9 local disk partitions must implement cryptographic mechanisms to prevent unauthorized disclosure or modification
0 commit comments