If GSSAPI authentication is not required on AIX, the SSH daemon must disable GSSAPI authentication.

Severity
Group ID
Group Title
Version
Rule ID
Date
STIG Version
mediumV-215292SRG-OS-000373-GPOS-00158AIX7-00-002108SV-215292r1009548_rule2024-08-163
Description
GSSAPI authentication is used to provide additional authentication mechanisms to applications. Allowing GSSAPI authentication through SSH exposes the system's GSSAPI to remote hosts, increasing the attack surface of the system. GSSAPI authentication must be disabled unless needed.
ℹ️ Check
Ask the SA if GSSAPI authentication is used for SSH authentication to the system. If so, this is not applicable. Check the SSH daemon configuration for the GSSAPI authentication setting: # grep -i GSSAPIAuthentication /etc/ssh/sshd_config | grep -v '^#' GSSAPIAuthentication no If the setting is not set to "no", this is a finding.
✔️ Fix
Edit "/etc/ssh/sshd_config" and remove the "GSSAPIAuthentication" setting or change the value to "no". Refresh sshd: # stopsrc -s sshd # startsrc -s sshd