Configure AIDE To Notify Personnel if Baseline Configurations Are Altered
An XCCDF Rule
Description
The operating system file integrity tool must be configured to notify designated personnel of any changes to configurations.
Rationale
Detecting changes in the system can help avoid unintended, and negative consequences that could affect the security state of the operating system
- ID
- xccdf_org.ssgproject.content_rule_aide_disable_silentreports
- Severity
- Medium
- Updated
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if dpkg-query --show --showformat='${db:Status-Status}
' 'kernel' 2>/dev/null | grep -q installed; then
if [ -e "" ] ; then
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- aide_disable_silentreports
- configure_strategy