Skip to content

Enable Smart Card Login

An XCCDF Rule

Description

To enable smart card authentication, consult the documentation at: For guidance on enabling SSH to authenticate against a Common Access Card (CAC), consult documentation at:

Rationale

Smart card login provides two-factor authentication stronger than that provided by a username and password combination. Smart cards leverage PKI (public key infrastructure) in order to provide and verify credentials.

ID
xccdf_org.ssgproject.content_rule_smartcard_auth
Severity
Medium
References
Updated

Remediation Templates

Anaconda Pre-Install Instructions

package --add=pam_pkcs11 --add=esc

A Shell Script

# Remediation is applicable only in certain platforms
if [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ] && { ! grep -q s390x /proc/sys/kernel/osrelease; }; then
# Install required packages
if ! rpm -q --quiet "esc" ; then
    yum install -y "esc"
fi