NixOS must take action when allocated audit record storage volume reaches 90 percent of the repository maximum audit record storage capacity.
Overview
| Finding ID | Version | Rule ID | IA Controls | Severity |
| V-268104 | ANIX-00-000430 | SV-268104r1039200_rule | CCI-000139 | medium |
| Description | ||||
| If security personnel are not notified immediately when storage volume reaches 90 percent utilization, they are unable to plan for audit record storage capacity expansion. | ||||
| STIG | Date | |||
| Anduril NixOS Security Technical Implementation Guide | 2024-10-25 | |||
Related Frameworks
3 paths across 3 frameworks
Related Frameworks
NIST 800-531 mapping
AU-5
1.00
- DISA · 1 · disa_xccdf · related
- DISA · 2025-01-23 · disa_cci_list · equivalent
NIST 800-1711 mapping
3.3.4
1.00
- DISA · 1 · disa_xccdf · related
- DISA · 2025-01-23 · disa_cci_list · equivalent
- NIST · Rev 2 (Feb 2020, errata Jan 2021) · nist_800_171_app_d · equivalent
CCI1 mapping
CCI-000139
1.00
- DISA · 1 · disa_xccdf · related
Details
Check Text (C-268104r1039200_chk)
Verify NixOS takes action when allocated audit record storage volume reaches 90 percent of the repository maximum audit record storage capacity with the following commands:
$ sudo grep -w admin_space_left /etc/audit/auditd.conf
admin_space_left = 10%
If the value of the "admin_space_left" keyword is not set to "10%" or if the line is commented out, this is a finding.
Fix Text (F-71931r1039199_fix)
Configure the operating system to initiate an action to notify the system administrator (SA) and information system security officer (ISSO) (at a minimum) when allocated audit record storage volume reaches 90 percent of the repository maximum audit record storage capacity.
Add or update the 'environment.etc."audit/auditd.conf".text' configuration in /etc/nixos/configuration.nix to include the following:
environment.etc."audit/auditd.conf".text = [
''
admin_space_left = 10%
''
];
Rebuild the NixOS configuration with the following command:
$ sudo nixos-rebuild switch