Install Smart Card Packages For Multifactor Authentication
An XCCDF Rule
Description
Configure the operating system to implement multifactor authentication by installing the required package with the following command:
Rationale
Using an authentication device, such as a CAC or token that is separate from
the information system, ensures that even if the information system is
compromised, that compromise will not affect credentials stored on the
authentication device.
Multifactor solutions that require devices separate from
information systems gaining access include, for example, hardware tokens
providing time-based or challenge-response authenticators and smart cards such
as the U.S. Government Personal Identity Verification card and the DoD Common
Access Card.
- ID
- xccdf_org.ssgproject.content_rule_install_smartcard_packages
- Severity
- Medium
- References
- Updated
Remediation - Puppet
include install_pkcs11-provider
class install_pkcs11-provider {
package { 'pkcs11-provider':
ensure => 'installed',
}
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- NIST-800-53-CM-6(a)
- PCI-DSS-Req-8.3
Remediation - script:kickstart
package install pkcs11-provider
Remediation - OS Build Blueprint
[[packages]]
name = "pkcs11-provider"
version = "*"
Remediation - script:bootc
dnf install pkcs11-provider
Remediation - Anaconda Pre-Install Instructions
package --add=pkcs11-provider
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel && { ! grep -q s390x /proc/sys/kernel/osrelease; }; then
if ! rpm -q --quiet "pkcs11-provider" ; then
dnf install -y "pkcs11-provider"
fi