Add description for 10.1.11

This commit is contained in:
samson 2018-11-13 17:45:35 +08:00
parent dc823b820d
commit 9faadcedd1
1 changed files with 29 additions and 0 deletions

View File

@ -1468,6 +1468,35 @@ Configure the operating system to assign home directories to all new local inter
CREATE_HOME yes
```
## 10.1.11 Set maxlogins for all accounts (Scored)
### Profile Applicability
Level 2
### Description
The operating system must limit the number of concurrent sessions to 10 for all accounts and/or account types.
### Rationale
Operating system management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to DoS attacks. This requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based on mission needs and the operational environment for each system.
### Aduit
Verify the operating system limits the number of concurrent sessions to "10" for all accounts and/or account types by issuing the following command:
```
# grep "maxlogins" /etc/security/limits.conf
* hard maxlogins 10
```
This can be set as a global domain (with the * wildcard) but may be set differently for multiple domains. If the "maxlogins" item is missing or the value is not set to "10" or less for all domains that have the "maxlogins" item assigned, this is a finding.
### Remediation
Configure the operating system to limit the number of concurrent sessions to "10" for all accounts and/or account types. Add the following line to the top of the /etc/security/limits.conf:
```
* hard maxlogins 10
```
template
### Profile Applicability