Ubuntu 20.04 LTS must require users to provide a password for privilege escalation.
Overview
| Finding ID | Version | Rule ID | IA Controls | Severity |
| V-274859 | UBTU-20-010015 | SV-274859r1101698_rule | CCI-002038 | medium |
| Description | ||||
| Without reauthentication, users may access resources or perform tasks for which they do not have authorization. When operating systems provide the capability to escalate a functional capability, it is critical that the user reauthenticate. Satisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157, SRG-OS-000373-GPOS-00158 | ||||
| STIG | Date | |||
| Canonical Ubuntu 20.04 LTS Security Technical Implementation Guide | 2025-05-16 | |||
Details
Check Text (C-274859r1101698_chk)
Verify that "/etc/sudoers" has no occurrences of "NOPASSWD" with the following command:
$ sudo egrep -iR 'NOPASSWD' /etc/sudoers /etc/sudoers.d/
If any occurrences of "NOPASSWD" are returned from the command and have not been documented with the information system security officer (ISSO) as an organizationally defined administrative group using multifactor authentication (MFA), this is a finding.
Fix Text (F-78865r1101697_fix)
Configure the operating system to not allow users to execute privileged actions without authenticating with a password.
Remove any occurrence of "NOPASSWD" found in "/etc/sudoers" file or files in the "/etc/sudoers.d" directory.
$ sudo find /etc/sudoers /etc/sudoers.d -type f -exec sed -i '/NOPASSWD/ s/^/# /g' {} \;