Install audispd-plugins Package
An XCCDF Rule
Description
The audispd-plugins
package can be installed with the following command:
$ sudo yum install audispd-plugins
Rationale
audispd-plugins
provides plugins for the real-time interface to the
audit subsystem, audispd
. These plugins can do things like relay events
to remote machines or analyze events for suspicious behavior.
- ID
- xccdf_org.ssgproject.content_rule_package_audispd-plugins_installed
- Severity
- Medium
- References
- Updated
Remediation - Puppet
include install_audispd-plugins
class install_audispd-plugins {
package { 'audispd-plugins':
ensure => 'installed',
}
Remediation - OS Build Blueprint
[[packages]]
name = "audispd-plugins"
version = "*"
Remediation - Anaconda Pre-Install Instructions
package --add=audispd-plugins
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel; then
if ! rpm -q --quiet "audispd-plugins" ; then
yum install -y "audispd-plugins"
fi
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- PCI-DSSv4-10.3
- PCI-DSSv4-10.3.3