NixOS must protect wireless access to the system using authentication of users and/or devices.

Overview

Finding IDVersionRule IDIA ControlsSeverity
V-268147ANIX-00-001260SV-268147r1039329_ruleCCI-001443medium
Description
Allowing devices and users to connect to the system without first authenticating them allows untrusted access and can lead to a compromise or attack. Wireless technologies include, for example, microwave, packet radio (UHF/VHF), 802.11x, and Bluetooth. Wireless networks use authentication protocols (e.g., EAP/TLS, PEAP), which provide credential protection and mutual authentication. This requirement applies to operating systems that control wireless devices.
STIGDate
Anduril NixOS Security Technical Implementation Guide2024-10-25

Related Frameworks

3 paths across 3 frameworks
NIST 800-531 mapping
  • DISA · 1 · disa_xccdf · related
  • DISA · 2025-01-23 · disa_cci_list · equivalent
NIST 800-1711 mapping
3.1.17
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-001443
1.00
  • DISA · 1 · disa_xccdf · related

Details

Check Text (C-268147r1039329_chk)

Verify NixOS disables Bluetooth adapters by running the following command: $ grep -R hardware.bluetooth /etc/nixos/ /etc/nixos/configuration.nix:hardware.bluetooth.enable = false; If "hardware.bluetooth.enable", does not equal false, is missing, or is commented out, this is a finding.

Fix Text (F-71974r1039328_fix)

Configure /etc/nixos/configuration.nix to disable Bluetooth adapters by adding the following configuration settings: hardware.bluetooth.enable = false; Rebuild the system with the following command: $ sudo nixos-rebuild switch