CME-806
Kerberos Authentication (GSSAPI)
Description
Centralized ticket-based authentication using Kerberos. Passwords never transmitted over the network; mutual authentication prevents impersonation of either party.
CVSS Vector Impacts
| Metric | Transition | Rationale |
|---|---|---|
| Attack Complexity (AC) | L → H | Credential interception useless; tickets are time-limited and host-bound |
CWE Relationships
Verification
Check Kerberos authentication is configured
$ klist -k /etc/krb5.keytab 2>/dev/null | head -3
# Expected: keytab entries
# Expected: keytab entries
Platform: linux
$ sshd -T | grep gssapiauthentication
# Expected: gssapiauthentication yes
# Expected: gssapiauthentication yes
Platform: linux