Add 10.1.10 description to Benchmark.

This commit is contained in:
samson 2018-10-17 03:23:53 +08:00
parent eafb0e6ab9
commit 99b7e08918
1 changed files with 25 additions and 0 deletions

View File

@ -495,6 +495,31 @@ Configure the operating system to enforce a delay of at least four seconds betwe
auth optional pam_faildelay.so delay=4000000
```
## 10.1.10 Set create home bool to yes (Scored)
### Profile Applicability
Level 3
### Description
All local interactive user accounts, upon creation, must be assigned a home directory.
### Rationale
If local interactive users are not assigned a valid home directory, there is no place for the storage and control of files they should own.
### Aduit
Verify all local interactive users on the system are assigned a home directory upon creation. Check to see if the system is configured to create home directories for local interactive users with the following command:
```
# grep -i create_home /etc/login.defs
CREATE_HOME yes
```
If the value for "CREATE_HOME" parameter is not set to "yes", the line is missing, or the line is commented out, this is a finding.
### Remediation
Configure the operating system to assign home directories to all new local interactive users by setting the "CREATE_HOME" parameter in "/etc/login.defs" to "yes" as follows.
```
CREATE_HOME yes
```
template
### Profile Applicability