A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-46137

CVE-2026-46137: Linux Kernel Race Condition Vulnerability

CVE-2026-46137 is a race condition flaw in the Linux kernel's MPTCP implementation that can cause data races in timer callbacks. This article covers the technical details, affected versions, and mitigation strategies.

Published: May 28, 2026

CVE-2026-46137 Overview

CVE-2026-46137 is a data race vulnerability in the Linux kernel's Multipath TCP (MPTCP) path manager. The flaw resides in the mptcp_pm_add_timer() helper, which runs as a timer callback in softirq context. Without holding the socket lock via bh_lock_sock(), concurrent access to socket state can produce a race condition between the timer callback and other socket operations.

The upstream fix synchronizes timer execution with socket locking and reschedules the timer when the socket is in use, mirroring the approach used by the keepalive timer. The issue affects kernels that ship the MPTCP ADD_ADDR retransmission path.

Critical Impact

A race between the ADD_ADDR retransmission timer and concurrent socket activity can cause inconsistent MPTCP path manager state on systems using Multipath TCP.

Affected Products

  • Linux kernel with MPTCP support enabled
  • Stable kernel branches receiving the referenced backport commits
  • Distributions shipping kernels prior to the patch commits

Discovery Timeline

  • 2026-05-28 - CVE-2026-46137 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46137

Vulnerability Analysis

The vulnerability is a kernel race condition [CWE-362] in the MPTCP path manager subsystem. MPTCP uses ADD_ADDR options to advertise additional addresses for subflows, and the kernel retransmits these advertisements through a timer. The mptcp_pm_add_timer() callback executes in softirq context and touches socket-associated state without acquiring the bottom-half socket lock.

When the timer fires concurrently with a process-context operation on the same socket, both contexts can read and modify shared path manager fields. The result is an unsynchronized data race that can corrupt timer or path manager state.

Root Cause

The root cause is missing synchronization between a softirq timer callback and process-context socket access. The original implementation did not call bh_lock_sock() before touching the socket inside mptcp_pm_add_timer(). The fix acquires the lock in softirq context and, when the socket is owned by another context, reschedules the timer to run shortly afterward.

Attack Vector

This is a kernel concurrency defect rather than a directly exploitable remote vector. Triggering the race requires an active MPTCP connection with ADD_ADDR retransmissions occurring while the socket is concurrently accessed. The vulnerability impacts integrity of MPTCP state on affected kernels.

No public proof-of-concept code is referenced in the advisory. The vulnerability mechanism is described directly in the upstream commit messages linked under the references. See the kernel commits, including Kernel Git Commit 6e4710d, for the precise locking change.

Detection Methods for CVE-2026-46137

Indicators of Compromise

  • No file-based or network-based indicators of compromise apply to this kernel race condition.
  • KCSAN (Kernel Concurrency Sanitizer) reports referencing mptcp_pm_add_timer on instrumented kernels indicate the underlying race.
  • Unexpected MPTCP path manager state transitions or kernel warnings in dmesg related to MPTCP timers warrant investigation.

Detection Strategies

  • Inventory running kernels and compare their version and patch level against the fix commits listed in the references.
  • Use distribution package management tooling to confirm whether the relevant stable kernel update is installed.
  • For development and test fleets, run KCSAN-enabled kernels under MPTCP workloads to surface residual races.

Monitoring Recommendations

  • Monitor kernel logs for MPTCP-related warnings, soft lockups, or unusual subflow behavior on hosts using Multipath TCP.
  • Track kernel package versions across the fleet through configuration management to identify unpatched hosts.
  • Alert on kernel panics or oops events that include MPTCP path manager symbols in the backtrace.

How to Mitigate CVE-2026-46137

Immediate Actions Required

  • Identify hosts running kernels with MPTCP enabled and confirm whether the fix has been backported.
  • Apply the latest stable kernel update from your Linux distribution that includes the referenced commits.
  • Reboot affected systems after installing the updated kernel package to load the patched code.

Patch Information

The fix is delivered through upstream stable kernel commits. Relevant references include Kernel Git Commit 013dcdc, Kernel Git Commit 2ad56e4, Kernel Git Commit 5cd6e0a, Kernel Git Commit 6e4710d, and Kernel Git Commit cc3c039. The patch acquires bh_lock_sock() in the timer callback and reschedules the timer when the socket is in use.

Workarounds

  • Disable MPTCP on hosts that do not require it by setting net.mptcp.enabled=0 via sysctl until the kernel is patched.
  • Avoid enabling MPTCP path manager ADD_ADDR advertisements on hosts that cannot be promptly updated.
  • Restrict workloads that rely on MPTCP to patched kernels only.
bash
# Configuration example: disable MPTCP as a temporary workaround
sudo sysctl -w net.mptcp.enabled=0
echo 'net.mptcp.enabled=0' | sudo tee /etc/sysctl.d/99-disable-mptcp.conf

# Verify current kernel version against patched releases
uname -r

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 013dcdc

  • Kernel Git Commit 2ad56e4

  • Kernel Git Commit 5cd6e0a

  • Kernel Git Commit 6e4710d

  • Kernel Git Commit cc3c039
  • Related CVEs
  • CVE-2026-46152: Linux Kernel Race Condition Vulnerability

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

  • CVE-2026-45917: Linux Kernel IPVS Race Condition Flaw

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

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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