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
    • 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-2025-71088

CVE-2025-71088: Linux Kernel Race Condition Vulnerability

CVE-2025-71088 is a race condition flaw in the Linux kernel's MPTCP implementation that causes inconsistent fallback status during simultaneous connections. This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71088 Overview

CVE-2025-71088 is a race condition vulnerability in the Linux kernel's Multipath TCP (MPTCP) implementation. The vulnerability occurs during simultaneous connection handling where a TCP subflow can process a SYN-ACK packet after transitioning to the TCP_FIN_WAIT1 state, bypassing critical MPTCP fallback checks. This race condition leads to an inconsistent socket state, which can cause kernel warnings and potential system instability when subsequent data packets are received.

Critical Impact

This race condition can cause the MPTCP socket to enter an inconsistent state, triggering kernel warnings and potentially impacting network connection handling on affected Linux systems.

Affected Products

  • Linux Kernel with MPTCP support enabled
  • Systems using IPv4/IPv6 TCP connections with MPTCP subflows
  • Kernel versions prior to the security patches referenced in c9bf315228, 79f80a7a47, 71154bbe49, 25f1ae942, and b5f46a0826 commits

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71088 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71088

Vulnerability Analysis

The vulnerability resides in the MPTCP subflow handling code within net/mptcp/subflow.c. During a simultaneous connection scenario, a race condition can occur between the TCP state transition and MPTCP fallback status checks. Specifically, when the sk_state_change() callback is not invoked for transitions to the FIN_WAIT1 state, the MPTCP fallback check is bypassed.

The kernel warning triggered at subflow_data_ready+0x40b/0x7c0 in net/mptcp/subflow.c:1515 indicates that the subflow's data ready handler encounters an unexpected state. The call trace shows the issue manifesting through the TCP receive path (tcp_data_queue → tcp_rcv_state_process → tcp_v6_do_rcv), ultimately affecting both IPv4 and IPv6 network stacks.

The inconsistent fallback status means the MPTCP socket (msk) moves to an invalid state, and any subsequent incoming data will trigger the kernel warning, potentially disrupting network operations.

Root Cause

The root cause is a missing fallback check during the TCP state transition from the initial connection state to FIN_WAIT1. The TCP subflow can process a simultaneous connection SYN-ACK packet during this state transition window, which bypasses the MPTCP fallback validation that would normally be performed via the sk_state_change() callback. This creates a time-of-check-time-of-use (TOCTOU) style race where the fallback status becomes inconsistent with the actual connection state.

Attack Vector

An attacker or adverse network conditions could potentially trigger this race condition through:

  1. Simultaneous Connection Scenarios: Initiating multiple TCP connections that trigger the MPTCP subflow handling paths concurrently
  2. Network Timing Manipulation: Crafting network conditions where SYN-ACK packets arrive during specific TCP state transitions
  3. Denial of Service: Repeatedly triggering the race condition to cause kernel warnings and system instability

The vulnerability was discovered by Syzkaller, indicating it can be triggered through automated fuzzing of the kernel's network stack. The fix moves the simultaneous-fallback check to the earliest possible stage—at SYN-ACK generation time—to prevent the race from occurring.

Detection Methods for CVE-2025-71088

Indicators of Compromise

  • Kernel warning messages containing subflow_data_ready and references to net/mptcp/subflow.c:1515
  • System log entries showing CPU warnings related to MPTCP connection handling
  • Unexpected network connection failures or resets on systems with MPTCP enabled
  • Stack traces in dmesg or kernel logs showing the tcp_data_queue → subflow_data_ready call path

Detection Strategies

  • Monitor kernel logs for WARNING messages originating from the MPTCP subsystem
  • Implement syslog alerting for patterns matching net/mptcp/subflow.c warning messages
  • Use kernel tracing tools (ftrace, eBPF) to monitor MPTCP state transitions for anomalies
  • Deploy intrusion detection rules to identify abnormal TCP connection patterns that may trigger simultaneous connection races

Monitoring Recommendations

  • Enable kernel message monitoring with alerts for MPTCP-related warnings
  • Track network socket statistics for unexpected connection state transitions
  • Monitor system stability metrics for kernel soft lockups or increased CPU usage in ksoftirqd
  • Review network traffic patterns for unusual simultaneous connection attempts

How to Mitigate CVE-2025-71088

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the security fix
  • Disable MPTCP if not required for business operations using sysctl net.mptcp.enabled=0
  • Monitor systems for kernel warnings indicating exploitation attempts
  • Review network configurations to identify systems with MPTCP enabled

Patch Information

The vulnerability has been addressed through multiple kernel commits that move the simultaneous-fallback check to the SYN-ACK generation stage. The following patches are available:

  • Kernel Git Commit c9bf315228
  • Kernel Git Commit 79f80a7a47
  • Kernel Git Commit 71154bbe49
  • Kernel Git Commit 25f1ae942
  • Kernel Git Commit b5f46a0826

System administrators should apply the appropriate patch based on their kernel version. The patches are designed to be backported to earlier kernel versions as noted in the commit message.

Workarounds

  • Disable MPTCP on systems where it is not required using sysctl configuration
  • Implement network-level controls to limit simultaneous connection scenarios
  • Use firewall rules to rate-limit incoming TCP connection attempts
  • Monitor and restart affected services if kernel warnings are observed
bash
# Disable MPTCP as a temporary workaround
echo 0 > /proc/sys/net/mptcp/enabled

# Or add to sysctl.conf for persistent configuration
echo "net.mptcp.enabled = 0" >> /etc/sysctl.conf
sysctl -p

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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 25f1ae942

  • Kernel Git Commit 71154bbe49

  • Kernel Git Commit 79f80a7a47

  • Kernel Git Commit b5f46a0826

  • Kernel Git Commit c9bf315228
  • Related CVEs
  • CVE-2026-23295: Linux Kernel Race Condition Vulnerability

  • CVE-2024-53088: Linux Kernel Race Condition Vulnerability

  • CVE-2025-22126: Linux Kernel Race Condition Vulnerability

  • CVE-2022-48858: Linux Kernel Race Condition Vulnerability
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