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-46158

CVE-2026-46158: Linux Kernel Privilege Escalation Issue

CVE-2026-46158 is a privilege escalation vulnerability in the Linux kernel's MPTCP implementation that causes a socket reference count leak. This article covers the technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46158 Overview

CVE-2026-46158 is a socket reference count leak in the Linux kernel's Multipath TCP (MPTCP) path manager. The flaw resides in the ADD_ADDR retransmission logic, where the socket is held via sk_reset_timer() but not consistently released on all return paths. Specific unlikely condition checks returned early without calling sock_put(), leaving the socket reference count incremented. Over time, repeated triggering of these paths can prevent socket structures from being freed, resulting in resource exhaustion in the kernel networking stack.

Critical Impact

Repeated ADD_ADDR retransmissions on affected systems can leak kernel socket references, leading to memory pressure and potential denial-of-service conditions on hosts using MPTCP.

Affected Products

  • Linux kernel versions containing the MPTCP path manager ADD_ADDR retransmission logic prior to the referenced fix commits
  • Distributions shipping affected stable kernel branches
  • Systems with MPTCP enabled in production networking workloads

Discovery Timeline

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

Technical Details for CVE-2026-46158

Vulnerability Analysis

Multipath TCP (MPTCP) extends standard TCP to allow simultaneous use of multiple network paths between endpoints. The ADD_ADDR option advertises additional addresses to the peer. When the kernel does not receive an acknowledgment, it retransmits the option using a timer.

The kernel calls sk_reset_timer() to schedule the retransmission, which increases the socket reference count to keep the sock structure alive until the timer fires. The timer callback is then expected to release the reference via sock_put() once handling completes.

In the affected code, certain unlikely sanity checks inside the callback returned directly without calling sock_put(). Each occurrence of these paths leaked one reference on the parent socket. The patch introduces a single exit label so all return paths invoke __sock_put(), ensuring the reference is released regardless of which check fails.

Root Cause

The root cause is an inconsistent cleanup pattern in the MPTCP path manager's ADD_ADDR retransmission handler. The handler acquired a socket reference through sk_reset_timer() but contained early-return branches that bypassed the corresponding sock_put(). This is a classic missing-release bug categorized as a memory or reference leak. The patch also removes a redundant !msk check that cannot occur because msk is never reset, and marks the remaining condition as unlikely.

Attack Vector

The leak triggers only when the unlikely conditions in the retransmission callback are reached. A local or remote peer that causes repeated MPTCP ADD_ADDR retransmissions against a vulnerable host can gradually accumulate leaked socket references. Sustained triggering may exhaust kernel memory tied to socket structures and degrade networking subsystem stability. Exploitability depends on whether the unlikely conditions can be induced reliably by an attacker-controlled peer.

No verified proof-of-concept code is available. Refer to the upstream commits for technical details on the corrected control flow:

  • Kernel Git Commit 25e37407442b
  • Kernel Git Commit 9634cb35af17
  • Kernel Git Commit acd3d3562315

Detection Methods for CVE-2026-46158

Indicators of Compromise

  • Growing kernel SOCK slab allocations in /proc/slabinfo on hosts with MPTCP enabled and no corresponding increase in active sockets.
  • Sustained increases in MPTcpExtAddAddrTx and MPTcpExtAddAddrTxDrop counters in /proc/net/netstat indicating heavy ADD_ADDR retransmission activity.
  • Kernel memory pressure events or OOM kills on long-running systems that handle MPTCP connections.

Detection Strategies

  • Compare kernel package versions against vendor advisories for the stable branches that received the three referenced commits.
  • Audit running kernels with uname -r and correlate against your distribution's CVE tracker entry for CVE-2026-46158.
  • Instrument the MPTCP subsystem with bpftrace or perf probes on mptcp_pm_add_addr_send_ack and timer callbacks to detect refcount imbalance.

Monitoring Recommendations

  • Track slabtop output for TCPv6, TCP, and MPTCP-related slabs on hosts that terminate MPTCP traffic.
  • Alert on anomalous growth of MPTCP nstat counters tied to ADD_ADDR retransmissions over short intervals.
  • Forward kernel logs and host telemetry to a centralized analytics platform to correlate networking subsystem anomalies across the fleet.

How to Mitigate CVE-2026-46158

Immediate Actions Required

  • Inventory all Linux hosts with MPTCP enabled by checking net.mptcp.enabled via sysctl.
  • Apply the latest stable kernel update from your distribution that includes the three upstream commits referenced in the advisory.
  • Reboot patched systems and validate kernel version with uname -r after deployment.

Patch Information

The fix is upstreamed across three commits that consolidate cleanup into a single exit path invoking __sock_put() and prune the unreachable !msk check. Distribution kernels should pull the fix into the corresponding stable branches. Reference commits: 25e37407442b, 9634cb35af17, and acd3d3562315 on git.kernel.org.

Workarounds

  • Disable MPTCP on hosts that do not require it by setting net.mptcp.enabled=0 via sysctl until kernels can be patched.
  • Restrict MPTCP peers to trusted networks using firewall rules to reduce the chance of induced ADD_ADDR retransmission storms.
  • Schedule periodic restarts of MPTCP-heavy services on unpatched hosts to reclaim leaked socket references.
bash
# Configuration example
# Disable MPTCP system-wide until the kernel patch is applied
sudo sysctl -w net.mptcp.enabled=0
echo 'net.mptcp.enabled=0' | sudo tee /etc/sysctl.d/99-disable-mptcp.conf

# Verify kernel build includes the fix commits
uname -r

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

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

  • Kernel Git Commit Change

  • Kernel Git Commit Modification
  • Related CVEs
  • CVE-2026-46268: Linux Kernel Privilege Escalation Flaw

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

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

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