forked from pool/audit
09b88829e8
- Fix hardened auditd.service (bsc#1181400) * add fix-hardened-service.patch Make /etc/audit read-write from the service. Remove PrivateDevices=true to expose /dev/* to auditd.service. - Enable stop rules for audit.service (cf. bsc#1190227) * add enable-stop-rules.patch - Change default log_format from ENRICHED to RAW (bsc#1190500): * add change-default-log_format.patch (SUSE-specific patch) - Update to version 3.0.5: * In auditd, flush uid/gid caches when user/group added/deleted/modified * Fixed various issues when dealing with corrupted logs * In auditd, check if log_file is valid before closing handle - Include fixed from 3.0.4: * Apply performance speedups to auparse library * Optimize rule loading in auditctl * Fix an auparse memory leak caused by glibc-2.33 by replacing realpath * Update syscall table to the 5.14 kernel * Fixed various issues when dealing with corrupted logs - Update to version 3.0.5: * In auditd, flush uid/gid caches when user/group added/deleted/modified * Fixed various issues when dealing with corrupted logs * In auditd, check if log_file is valid before closing handle - Include fixed from 3.0.4: * Apply performance speedups to auparse library * Optimize rule loading in auditctl * Fix an auparse memory leak caused by glibc-2.33 by replacing realpath * Update syscall table to the 5.14 kernel * Fixed various issues when dealing with corrupted logs OBS-URL: https://build.opensuse.org/request/show/920348 OBS-URL: https://build.opensuse.org/package/show/security/audit?expand=0&rev=129
29 lines
899 B
Diff
29 lines
899 B
Diff
From: Enzo Matsumiya <ematsumiya@suse.de>
|
|
Subject: auditd.conf: change default log_format
|
|
References: bsc#1190500
|
|
|
|
Upstream commit bf1270cfe ("change default logging format and update roadmap")
|
|
changed the default log_format from RAW to ENRICHED.
|
|
|
|
This causes non-audit tools to not interpret the GS character (group separator,
|
|
0x1d) that splits the raw data from the enriched data, causing it to be visually
|
|
concatenated.
|
|
|
|
Since a candidate patch to change this was rejected by upstream, we change
|
|
the default log_format back to RAW instead, to avoid confusion on customers'
|
|
environments.
|
|
|
|
Signed-off-by: Enzo Matsumiya <ematsumiya@suse.de>
|
|
|
|
--- a/init.d/auditd.conf
|
|
+++ b/init.d/auditd.conf
|
|
@@ -6,7 +6,7 @@ local_events = yes
|
|
write_logs = yes
|
|
log_file = /var/log/audit/audit.log
|
|
log_group = audit
|
|
-log_format = ENRICHED
|
|
+log_format = RAW
|
|
flush = INCREMENTAL_ASYNC
|
|
freq = 50
|
|
max_log_file = 8
|