Skip to content

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 Templates

Anaconda Pre-Install Instructions

package --add=audispd-plugins

A 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

OS Build Blueprint

[[packages]]
name = "audispd-plugins"
version = "*"

An Ansible Snippet

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - PCI-DSSv4-10.3
  - PCI-DSSv4-10.3.3

A Puppet Snippet

include install_audispd-plugins
class install_audispd-plugins {
  package { 'audispd-plugins':
    ensure => 'installed',
  }
}