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 |
|---|---|---|---|---|---|---|
| medium | V-215292 | SRG-OS-000373-GPOS-00158 | AIX7-00-002108 | SV-215292r1050791_rule | 2026-02-06 | 3 |
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