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: defaults/main.yml
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -477,6 +477,17 @@ rhel8stig_smartcard: false
477
477
# Configure your smartcard driver
478
478
rhel8stig_smartcarddriver: cackey
479
479
480
+
#Whether or not system uses remote automounted home directories via autofs
481
+
rhel8stig_autofs_remote_home_dirs: false
482
+
483
+
#The local mount point used by autofs to mount remote home directory to. This location will be excluded during getent user enumeration, if rhel8stig_autofs_remote_home_dirs is true
#The default shell command to gather local interactive user directories
487
+
## NOTE: You will need to adjust the UID range in parenthesis below.
488
+
## ALSO NOTE: We weed out any user with a home dir not in standard locations because interactive users shouldn't have those paths as a home dir. Add or removed directory paths as needed below.
Copy file name to clipboardExpand all lines: tasks/prelim.yml
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -116,11 +116,26 @@
116
116
- RHEL-08-010750
117
117
- RHEL-08-020320
118
118
119
-
## NOTE: You will need to adjust the UID range in parenthases below.
120
-
## ALSO NOTE: We weed out any user with a home dir not in standard locations because interactive users shouldn't have those paths as a home dir. Add or removed directory paths as needed below.
119
+
- name: "PRELIM | RHEL-08-010690 Ensure user enumeration command is modified when autofs remote home directories are in use"
120
+
block:
121
+
- name: Ensure that rhel8stig_auto_mount_home_dirs_local_mount_point is defined and not length zero
122
+
assert:
123
+
that:
124
+
- rhel8stig_auto_mount_home_dirs_local_mount_point is defined
0 commit comments