Skip to content

Enable Smart Card Login

An XCCDF Rule

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 rpm --quiet -q kernel && { ! grep -q s390x /proc/sys/kernel/osrelease; }; then
# Install required packages
if ! rpm -q --quiet "esc" ; then
    yum install -y "esc"
fi