The system must restrict the ability of users to assume excessive privileges to members of a defined group and prevent unauthorized users from accessing administrative tools.

Overview

Finding IDVersionRule IDIA ControlsSeverity
V-220001SOL-11.1-040200SV-220001r958726_ruleCCI-002235medium
Description
Allowing any user to elevate their privileges can allow them excessive control of the system tools.
STIGDate
Solaris 11 X86 Security Technical Implementation Guide2025-05-05

Related Frameworks

3 paths across 3 frameworks
NIST 800-531 mapping
  • DISA · 3 · disa_xccdf · related
  • DISA · 2025-01-23 · disa_cci_list · equivalent
NIST 800-1711 mapping
3.1.7
1.00
  • DISA · 3 · disa_xccdf · related
  • DISA · 2025-01-23 · disa_cci_list · equivalent
  • NIST · Rev 2 (Feb 2020, errata Jan 2021) · nist_800_171_app_d · equivalent
CCI1 mapping
CCI-002235
1.00
  • DISA · 3 · disa_xccdf · related

Details

Check Text (C-220001r958726_chk)

Verify the root user is configured as a role, rather than a normal user. # userattr type root If the command does not return the word "role", this is a finding. Verify at least one local user has been assigned the root role. # grep '[:;]roles=root[^;]*' /etc/user_attr If no lines are returned, or no users are permitted to assume the root role, this is a finding.

Fix Text (F-21710r372695_fix)

The root role is required. Convert the root user into a role. # usermod -K type=role root Add the root role to authorized users' logins. # usermod -R +root [username] Remove the root role from users who should not be authorized to assume it. # usermod -R -root [username]