CVE-2024-45009

Description

A flaw was found in the Linux kernel's Multipath TCP (MPTCP) path manager. A remote attacker could potentially exploit an issue where the add_addr_accepted counter is incorrectly decremented during subflow removal. This can lead to an inconsistent state within the MPTCP connection, potentially resulting in a denial of service.

Mitigation

To mitigate this issue, disable the Multipath TCP (MPTCP) kernel module if it is not required. This prevents the vulnerable code path from being loaded.

To blacklist the `mptcp` module:
1. Create `/etc/modprobe.d/disable-mptcp.conf` with:

   blacklist mptcp
install mptcp /bin/true
2. Regenerate the initramfs:
bash
dracut -f -v
   or `mkinitrd -f /boot/initramfs-$(uname -r).img $(uname -r)`
3. Reboot the system.

Alternatively, disable MPTCP at runtime:

bash
sysctl -w net.mptcp.enabled=0
For persistent disablement, add `net.mptcp.enabled = 0` to `/etc/sysctl.conf` or a file in `/etc/sysctl.d/`. A system reboot or service reload may be required for changes to take full effect.

Common Vulnerability Scoring System (CVSS) Score Details

Info alert:Important note

CVSS scores for open source components depend on vendor-specific factors (e.g. version or build chain). Therefore, Red Hat's score and impact rating can be different from NVD and other vendors. Red Hat remains the authoritative CVE Naming Authority (CNA) source for its products and services (see Red Hat classifications).

CVSS v3 Score Breakdown

Red HatNVDcve.org
Base Score5.55.58.2
Attack VectorLocalLocalNetwork
Attack ComplexityLowLowLow
Privileges RequiredLowLowNone
User InteractionNoneNoneNone
ScopeUnchangedUnchangedUnchanged
ConfidentialityNoneNoneNone
Integrity ImpactNoneNoneLow
Availability ImpactHighHighHigh

Vector

Red Hat: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

NVD: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

cve.org: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H

Understanding the Weakness (CWE)

Other

Technical Impact: Other

Frequently Asked Questions

Want to get errata notifications? Sign up here.