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-2026-23321

CVE-2026-23321: Linux Kernel Privilege Escalation Flaw

CVE-2026-23321 is a privilege escalation vulnerability in the Linux kernel affecting MPTCP endpoint management. This flaw can allow attackers to elevate privileges. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23321 Overview

CVE-2026-23321 is a kernel vulnerability in the Linux kernel's Multipath TCP (MPTCP) path manager subsystem. The vulnerability exists in the in-kernel MPTCP path manager where endpoints configured with both 'signal' and 'subflow' flags are not properly marked as used under certain conditions. This state tracking inconsistency was discovered through Syzkaller fuzzing and can lead to kernel warnings and potentially unstable system behavior.

The vulnerability occurs when specific MPTCP configuration actions are performed in sequence: setting the subflows limit to 0, creating an MPTCP endpoint with both 'signal' and 'subflow' flags, establishing an MPTCP connection from a different address (which sends an ADD_ADDR but initiates no subflows), and then removing the endpoint. This sequence triggers a warning in the __mark_subflow_endp_available function due to incorrect local_addr_used counter tracking.

Critical Impact

This Linux kernel MPTCP vulnerability can cause kernel warnings and system instability. Systems using MPTCP with signal+subflow endpoint configurations are affected.

Affected Products

  • Linux kernel with MPTCP support enabled
  • Systems running kernel versions prior to the security patches
  • Network environments utilizing Multipath TCP functionality

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23321 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23321

Vulnerability Analysis

This vulnerability represents a state tracking flaw in the MPTCP path manager's endpoint management logic. When an MPTCP endpoint is configured with both the 'signal' and 'subflow' flags, the kernel should properly track whether the endpoint has been used for establishing subflows or signaling addresses to peers.

The root cause lies in the mptcp_pm_nl_del_addr_doit function within net/mptcp/pm_kernel.c. When removing an endpoint, the function calls mptcp_nl_remove_subflow_and_signal_addr, which in turn invokes __mark_subflow_endp_available. This function expects the msk->pm.local_addr_used counter to be non-zero before decrementing, but under the specific conditions identified by Syzkaller, this counter remains at 0, triggering a kernel warning.

The exploitation scenario requires local access to configure MPTCP parameters and create network connections. An attacker with sufficient privileges could potentially leverage this state inconsistency to cause system instability or as part of a larger attack chain targeting kernel stability.

Root Cause

The vulnerability stems from improper state tracking in the MPTCP path manager when handling endpoints with dual flags ('signal' and 'subflow'). Specifically, when the subflows limit is set to 0, an endpoint with both flags sends ADD_ADDR announcements (due to the 'signal' flag) but never initiates subflows (due to the limit). This creates a state mismatch where the kernel attempts to decrement a usage counter that was never incremented, resulting in an underflow condition and kernel warning.

The call trace shows the issue originates from:

  1. mptcp_pm_nl_del_addr_doit - Entry point for address deletion
  2. mptcp_nl_remove_subflow_and_signal_addr - Subflow/signal cleanup handler
  3. __mark_subflow_endp_available - Where the warning triggers due to local_addr_used == 0

Attack Vector

The attack requires local access to manipulate kernel networking parameters. The exploitation path involves:

  1. Configuring MPTCP subflow limits via netlink interface
  2. Creating endpoints with specific flag combinations
  3. Establishing MPTCP connections from alternate addresses
  4. Triggering cleanup paths through endpoint removal

The vulnerability can be triggered through the sendmsg system call targeting netlink sockets, as shown in the kernel trace. The attack leverages the generic netlink interface (genl_family_rcv_msg_doit) to invoke the vulnerable MPTCP path manager functions.

Detection Methods for CVE-2026-23321

Indicators of Compromise

  • Kernel warning messages containing net/mptcp/pm_kernel.c:1071 in system logs
  • Warnings referencing __mark_subflow_endp_available or mptcp_nl_remove_subflow_and_signal_addr
  • Unexpected MPTCP path manager behavior when removing endpoints
  • System instability correlated with MPTCP endpoint configuration changes

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for MPTCP-related warnings
  • Audit netlink socket activity targeting MPTCP configuration
  • Review MPTCP endpoint configurations for unusual signal+subflow flag combinations
  • Deploy kernel monitoring to detect anomalous path manager state transitions

Monitoring Recommendations

  • Enable enhanced kernel logging for the MPTCP subsystem
  • Configure alerts for kernel warnings containing pm_kernel.c references
  • Monitor for rapid MPTCP endpoint creation/deletion patterns
  • Track netlink messages to the MPTCP generic netlink family

How to Mitigate CVE-2026-23321

Immediate Actions Required

  • Apply kernel security patches from the stable kernel tree
  • Review MPTCP endpoint configurations and temporarily avoid signal+subflow combinations
  • Monitor systems for kernel warnings indicating exploitation attempts
  • Consider disabling MPTCP if not operationally required until patching is complete

Patch Information

The Linux kernel maintainers have released patches addressing this vulnerability across multiple stable branches. The fix ensures that endpoints with both 'signal' and 'subflow' flags are always marked as used, preventing the state tracking inconsistency.

Available patches include:

  • Kernel Git Commit 05799c2
  • Kernel Git Commit 198824c
  • Kernel Git Commit 579a752
  • Kernel Git Commit 67f34ab
  • Kernel Git Commit a64aa7d
  • Kernel Git Commit c5c877e

Organizations should update to patched kernel versions through their distribution's package manager or by compiling updated kernel sources.

Workarounds

  • Disable MPTCP if not required by setting net.mptcp.enabled=0 via sysctl
  • Avoid creating MPTCP endpoints with both 'signal' and 'subflow' flags simultaneously
  • Ensure subflow limits are not set to 0 when using combined endpoint flags
  • Restrict access to MPTCP netlink configuration interfaces to trusted administrators
bash
# Configuration example
# Disable MPTCP temporarily until patched kernel is deployed
echo 0 | sudo tee /proc/sys/net/mptcp/enabled

# Verify MPTCP is disabled
cat /proc/sys/net/mptcp/enabled

# For persistent configuration, add to /etc/sysctl.conf:
# net.mptcp.enabled = 0

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 05799c2

  • Kernel Git Commit 198824c

  • Kernel Git Commit 579a752

  • Kernel Git Commit 67f34ab

  • Kernel Git Commit a64aa7d

  • Kernel Git Commit c5c877e
  • Related CVEs
  • CVE-2026-23296: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23345: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23375: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23346: Linux Kernel Privilege Escalation Flaw
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