The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2024-53122

CVE-2024-53122: Linux Kernel Race Condition Vulnerability

CVE-2024-53122 is a race condition flaw in the Linux Kernel's MPTCP implementation that can cause a divide by zero error. This article covers the technical details, affected versions, security impact, and mitigation.

Published: January 28, 2026

CVE-2024-53122 Overview

CVE-2024-53122 is a race condition vulnerability in the Linux kernel's Multipath TCP (MPTCP) implementation, specifically within the mptcp_rcv_space_adjust function. The vulnerability occurs when additional active subflows created by the in-kernel path manager are included in the subflow list before the completion of the TCP three-way handshake (3WHS). A racing recvmsg() operation spooling data on an already established subflow can unconditionally call tcp_cleanup_rbuf() on all current subflows, including newly created ones that are not yet in a suitable state, potentially triggering a divide-by-zero error.

Critical Impact

Local attackers with low privileges can exploit this race condition to cause a denial of service through a kernel divide-by-zero error, potentially crashing the system or causing instability in MPTCP-enabled network communications.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 6.12-rc1 through 6.12-rc7
  • Debian Linux (see Debian LTS Announcement)

Discovery Timeline

  • 2024-12-02 - CVE-2024-53122 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-53122

Vulnerability Analysis

The vulnerability resides in the MPTCP subsystem's receive space adjustment mechanism. MPTCP allows multiple TCP connections (subflows) to be aggregated under a single connection, improving resilience and throughput. The in-kernel path manager is responsible for creating and managing these subflows dynamically.

The core issue is a race condition (CWE-362) between subflow creation and receive buffer processing. When a new subflow is being created, it gets added to the subflow list immediately, but the TCP connection establishment (three-way handshake) has not yet completed. During this window, if another thread calls recvmsg() on the MPTCP socket to receive data from an already established subflow, the function iterates through all subflows and calls tcp_cleanup_rbuf() on each one without checking whether the subflow has completed connection establishment.

For newly created subflows that haven't completed the 3WHS, certain internal state variables may be uninitialized or set to zero. When tcp_cleanup_rbuf() attempts to perform calculations using these values, it can result in a divide-by-zero error, causing a kernel panic or system crash.

Root Cause

The root cause is insufficient state validation before invoking tcp_cleanup_rbuf() on MPTCP subflows. The code failed to verify that each subflow had completed its TCP connection establishment before performing receive buffer cleanup operations. The fix explicitly checks that each subflow is in a suitable state (connection established) before invoking tcp_cleanup_rbuf().

Attack Vector

This is a local attack vector requiring low privileges. An attacker with access to a local user account on a system with MPTCP enabled can craft a scenario that triggers the race condition:

  1. The attacker creates an MPTCP socket with multiple subflows enabled
  2. During active data transfer on an established subflow, the kernel path manager initiates creation of additional subflows
  3. By precisely timing recvmsg() calls during the brief window when new subflows exist in the list but haven't completed the 3WHS, the attacker can trigger the vulnerable code path
  4. The divide-by-zero error causes kernel panic or denial of service

The attack does not require any user interaction and can be automated once the timing characteristics of the target system are understood.

Detection Methods for CVE-2024-53122

Indicators of Compromise

  • Kernel panic messages referencing divide-by-zero errors in MPTCP-related functions
  • System crashes or unexpected reboots on systems with active MPTCP connections
  • Kernel log entries (dmesg) showing errors in mptcp_rcv_space_adjust or tcp_cleanup_rbuf
  • Repeated MPTCP connection failures or instability during high-concurrency network operations

Detection Strategies

  • Monitor kernel logs for divide-by-zero exceptions or MPTCP subsystem errors using syslog or journald
  • Implement kernel crash dump analysis to identify MPTCP-related stack traces
  • Use eBPF-based tracing tools to monitor MPTCP subflow state transitions and detect anomalous timing patterns
  • Deploy runtime kernel integrity monitoring to detect unexpected kernel panics

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture forensic data from any MPTCP-related crashes
  • Configure alerting on kernel oops/panic events, particularly those involving network subsystem functions
  • Monitor system uptime and unplanned reboot events on servers utilizing MPTCP
  • Implement network connection monitoring to track MPTCP subflow creation patterns

How to Mitigate CVE-2024-53122

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for CVE-2024-53122
  • If immediate patching is not possible, consider disabling MPTCP temporarily on affected systems
  • Review and audit which systems have MPTCP enabled and prioritize patching based on exposure
  • Monitor affected systems for signs of exploitation attempts or unexpected crashes

Patch Information

The Linux kernel maintainers have released patches addressing this vulnerability. The fix adds explicit state checking before calling tcp_cleanup_rbuf() to ensure subflows are in a suitable state. Patches are available through the following kernel commits:

  • Kernel Commit 24995851d58c
  • Kernel Commit aad6412c63ba
  • Kernel Commit ce7356ae3594
  • Kernel Commit ff825ab2f455

Debian users should refer to the Debian LTS Security Announcement for distribution-specific updates.

Workarounds

  • Disable MPTCP at the kernel level if not required for operations: sysctl -w net.mptcp.enabled=0
  • Restrict access to systems where MPTCP is required to trusted users only
  • Implement network segmentation to limit exposure of MPTCP-enabled systems
  • Consider using application-level connection pooling instead of MPTCP where feasible until patching is complete
bash
# Disable MPTCP temporarily as a workaround
sysctl -w net.mptcp.enabled=0

# Make the change persistent across reboots
echo "net.mptcp.enabled=0" >> /etc/sysctl.conf
sysctl -p

# Verify MPTCP is disabled
sysctl net.mptcp.enabled

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-362
  • Technical References
  • Linux Kernel Commit Update 1

  • Debian LTS Announcement
  • Vendor Resources
  • Linux Kernel Commit Update 2

  • Linux Kernel Commit Update 3

  • Linux Kernel Commit Update 4

  • Linux Kernel Commit Update 5
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English