UCF STIG Viewer Logo

The Datagram Congestion Control Protocol (DCCP) kernel module must be disabled unless required.


Overview

Finding ID Version Rule ID IA Controls Severity
V-77821 RHEL-07-020101 SV-92517r1_rule Medium
Description
Disabling DCCP protects the system against exploitation of any flaws in the protocol implementation.
STIG Date
Red Hat Enterprise Linux 7 Security Technical Implementation Guide 2017-12-14

Details

Check Text ( C-77439r4_chk )
Verify the operating system disables the ability to load the DCCP kernel module.

Check to see if the DCCP kernel module is disabled with the following command:

# grep -r dccp /etc/modprobe.d/* | grep -i "/bin/true" | grep -v "^#"

install dccp /bin/true

If the command does not return any output, or the line is commented out, and use of DCCP is not documented with the Information System Security Officer (ISSO) as an operational requirement, this is a finding.
Fix Text (F-84521r2_fix)
Configure the operating system to disable the ability to use the DCCP kernel module.

Create a file under "/etc/modprobe.d" with the following command:

# touch /etc/modprobe.d/nodccp

Add the following line to the created file:

install dccp /bin/true