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 3 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to SUSE Linux Enterprise Micro (SLEM) 5 Security Technical Implementation Guide

V-261356

CAT II (Medium)

SLEM 5 must never automatically remove or disable emergency administrator accounts.

Rule ID

SV-261356r996518_rule

STIG

SUSE Linux Enterprise Micro (SLEM) 5 Security Technical Implementation Guide

Version

V1R4

CCIs

CCI-001682

Discussion

Emergency administrator accounts, also known as "last resort" or "break glass" accounts, are local logon accounts enabled on the system for emergency use by authorized system administrators to manage a system when standard logon methods are failing or not available. Emergency accounts are not subject to manual removal or scheduled expiration requirements.

Check Content

Verify SLEM 5 is configured such that emergency administrator accounts are never automatically removed or disabled with the following command:

Note: Root is typically the "account of last resort" on a system and is also used as the example emergency administrator account. If another account is being used as the emergency administrator account, the command should be used against that account.

     > sudo chage -l <emergency_administrator_account_name> | grep -E '(Password|Account) expires' 
     Password expires: never
     Account expires: never

If "Password expires" or "Account expires" is set to anything other than "never", this is a finding.

Fix Text

Configure SLEM 5 to never automatically remove or disable emergency administrator accounts.

     > sudo chage -I -1 -M 99999 <emergency_administrator_account_name>