Skip to content

Ensure the audit Subsystem is Installed

An XCCDF Rule

Description

The audit package should be installed.

Rationale

The auditd service is an access monitoring and accounting daemon, watching system calls to audit any access, in comparison with potential local access control policy such as SELinux policy.

ID
xccdf_org.ssgproject.content_rule_package_audit_installed
Severity
Medium
References
Updated

Remediation Templates

An Ansible Snippet

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - CCE-93756-5
  - DISA-STIG-SLEM-05-653010

A Puppet Snippet

include install_audit
class install_audit {
  package { 'audit':
    ensure => 'installed',
  }
}

OS Build Blueprint

[[packages]]
name = "audit"
version = "*"

A Shell Script

# Remediation is applicable only in certain platforms
if rpm --quiet -q kernel-default; then
zypper install -y "audit"

else
    >&2 echo 'Remediation is not applicable, nothing was done'
fi