UBUNTU24-CIS-Audit/section_6/cis_6.2.3/cis_6.2.3.4.yml

50 lines
1.4 KiB
YAML

---
{{ if .Vars.ubtu24cis_level_2 }}
{{ if .Vars.ubtu24cis_rule_6_2_3_4 }}
command:
auditd_time_cnf:
title: 6.2.3.4 | Ensure events that modify date and time information are collected | Config
exec: grep time-change /etc/audit/rules.d/*.rules
exit-status: 0
stdout:
- '-a always,exit -F arch=b64 -S adjtimex,settimeofday,clock_settime -k time-change'
- '-a always,exit -F arch=b32 -S adjtimex,settimeofday,clock_settime -k time-change'
- '-w /etc/localtime -p wa -k time-change'
meta:
server: 2
workstation: 2
CIS_ID:
- 6.2.3.4
CISv8:
- 8.5
CISv8_IG1: false
CISv8_IG2: true
CISv8_IG3: true
NIST800-53R5:
- AU-3
- CM-6
auditd_time_live:
title: 6.2.3.4 | Ensure events that modify date and time information are collected | Live
exec: auditctl -l | grep time-change
exit-status: 0
stdout:
- '-a always,exit -F arch=b64 -S adjtimex,settimeofday,clock_settime -F key=time-change'
- '-a always,exit -F arch=b32 -S settimeofday,adjtimex,clock_settime -F key=time-change'
- '-w /etc/localtime -p wa -k time-change'
meta:
server: 2
workstation: 2
CIS_ID:
- 6.2.3.4
CISv8:
- 8.5
CISv8_IG1: false
CISv8_IG2: true
CISv8_IG3: true
NIST800-53R5:
- AU-3
- CM-6
{{ end }}
{{ end }}