On the BIND 9.x server the platform on which the name server software is hosted must be configured to send outgoing DNS messages from a random port.
Overview
| Finding ID | Version | Rule ID | IA Controls | Severity |
| V-207557 | BIND-9X-001059 | SV-207557r879887_rule | CCI-000366 | low |
| Description | ||||
| Hosts that run the name server software should not provide any other services and therefore should be configured to respond to DNS traffic only. Outgoing DNS messages should be sent from a random port to minimize the risk of an attacker's guessing the outgoing message port and sending forged replies. | ||||
| STIG | Date | |||
| BIND 9.x Security Technical Implementation Guide | 2024-02-15 | |||
Related Frameworks
4 paths across 3 frameworks
Related Frameworks
NIST 800-531 mapping
CM-6
1.00
- DISA · 2 · disa_xccdf · related
- DISA · 2025-01-23 · disa_cci_list · equivalent
NIST 800-1712 mappings
3.4.1
1.00
- DISA · 2 · 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
3.4.2
1.00
- DISA · 2 · 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-000366
1.00
- DISA · 2 · disa_xccdf · related
Details
Check Text (C-207557r879887_chk)
Verify that the BIND 9.x server does not limit outgoing DNS messages to a specific port.
Inspect the "named.conf" file for the any instance of the "port" flag:
options {
listen-on port 53 { <ip_address>; };
listen-on-v6 port 53 { <ip_v6_address>; };
};
If any "port" flag is found outside of the "listen-on" or "listen-on-v6" statements, this is a finding.
Fix Text (F-7812r283726_fix)
Edit the "named.conf" file.
Configure the BIND 9.x server to only use the "port" flag with the "listen-on" and "listen-on-v6" statements:
options {
listen-on port 53 { <ip_address>; };
listen-on-v6 port 53 { <ip_v6_address>; };
};
Restart the BIND 9.x process.