Add description to benchmark doc for 5.10

This commit is contained in:
samson 2018-11-19 18:06:00 +08:00
parent 34deb79a0a
commit b7457a81f7
1 changed files with 23 additions and 0 deletions

View File

@ -251,6 +251,29 @@ if config file is in /etc/systemd/:
# systemctl daemon-reload
```
## 5.10 Ensure sudo is installed (scored)
### Profile Applicability
Level 2
### Description
Systems must have sudo installed.
### Rationale
The su command allows a user to run a command or shell as another user. The program has been superseded by sudo, which allows for more granular control over privileged access.
### Aduit
Verify the operating system has the sudo package installed. Check to see if the sudo package is installed with the following command:
```
# dpkg -s sudo | grep '^Status: install'
```
### Remediation
Install the sudo program (if it is not on the system) with the following command:
```
# apt-get install sudo
```
## 6.17 ensure virul scan server is enabled (scored)
### Profile Applicability