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 - script:kickstart


package install audispd-plugins

Remediation - OS Build Blueprint


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

Remediation - script:bootc


dnf install audispd-plugins

Remediation - Ansible

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - CCE-82953-1
  - PCI-DSSv4-10.3

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 - Puppet

include install_audispd-plugins

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