STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 4 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Cloud Linux AlmaLinux OS 9 Security Technical Implementation Guide

V-269138

CAT II (Medium)

AlmaLinux OS 9 must require a unique superuser's name upon booting into single-user and maintenance modes.

Rule ID

SV-269138r1137691_rule

STIG

Cloud Linux AlmaLinux OS 9 Security Technical Implementation Guide

Version

V1R6

CCIs

CCI-000213

Discussion

Having a nondefault grub superuser username makes password-guessing attacks less effective.

Check Content

Verify the boot loader superuser account has been set with the following command:

$ grep -A1 "superusers" /etc/grub2.cfg 

set superusers="superman"
export superusers
password_pbkdf2 superman ${GRUB2_PASSWORD}

In this example "superman" is the actual account name, changed from the default "root".

If superusers contains easily guessable usernames, this is a finding.

Fix Text

Configure AlmaLinux OS 9 to have a unique username for the grub superuser account using the following commands:

$ sed -ri 's/root/superman/' /etc/grub.d/01_users

$ grub2-mkconfig -o /boot/grub2/grub.cfg