You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: roles/os_hardening/README.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -299,6 +299,30 @@ We know that this is the case on Raspberry Pi.
299
299
-`os_sha_crypt_max_rounds`
300
300
- Default: `640000`
301
301
- Description: Define the number of maximum SHA rounds. With a lot of rounds brute forcing the password is more difficult. But note also that it more CPU resources will be needed to authenticate users. The values must be inside the 1000-999999999 range.
302
+
-`os_auditd_enabled`
303
+
- Default: `true`
304
+
- Description: Set to false to disable installing and configuring `auditd`.
305
+
-`os_auditd_flush`
306
+
- Default: `INCREMENTAL`
307
+
- Description: Valid values are none, incremental, incremental_async, data, and sync.
308
+
-`os_auditd_max_log_file`
309
+
- Default: 6
310
+
- Description: This keyword specifies the maximum file size in megabytes. When this limit is reached, it will trigger a configurable action.
311
+
-`os_auditd_max_log_file_action`
312
+
- Default: `keep_logs`
313
+
- Description: This parameter tells the system what action to take when the system has detected that the max file size limit has been reached. Valid values are ignore, syslog, suspend, rotate and keep_logs.
314
+
-`os_auditd_admin_space_left`
315
+
- Default: 50
316
+
- Description: This is a numeric value in megabytes that tells the audit daemon when to perform a configurable action because the system is running low on disk space.
317
+
-`os_auditd_space_left`
318
+
- Default: 75
319
+
- Description: If the free space in the filesystem containing log_file drops below this value, the audit daemon takes the action specified by space_left_action.
320
+
-`os_auditd_space_left_action`
321
+
- Default: SYSLOG
322
+
- Description: This parameter tells the system what action to take when the system has detected that it is starting to get low on disk space.
323
+
-`os_auditd_log_format`
324
+
- Default: `RAW`
325
+
- Description: The log format describes how the information should be stored on disk. There are 2 options: raw and enriched. If set to `RAW`, the audit records will be stored in a format exactly as the kernel sends it. The `ENRICHED` option will resolve all uid, gid, syscall, architecture, and socket address information before writing the event to disk. This aids in making sense of events created on one system but reported/analyzed on another system.
0 commit comments