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

CVE-2026-43042: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43042 is a use-after-free vulnerability in the Linux kernel's MPLS implementation that can lead to out-of-bounds memory accesses. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43042 Overview

CVE-2026-43042 is a race condition vulnerability in the Linux kernel's Multiprotocol Label Switching (MPLS) subsystem. The flaw exists because RCU-protected codepaths, including mpls_forward and mpls_dump_routes, can observe an inconsistent view of the platform_labels count and platform_label array pair during a concurrent table resize performed by resize_platform_label_table. This inconsistency allows out-of-bounds (OOB) memory accesses in kernel space. The upstream fix introduces a seqcount to ensure RCU readers obtain a consistent snapshot of both fields.

Critical Impact

A local attacker with the ability to trigger MPLS route operations can cause out-of-bounds kernel memory access, leading to information disclosure or kernel denial of service.

Affected Products

  • Linux kernel versions containing the vulnerable MPLS platform_label table implementation prior to the upstream fix
  • Distributions shipping kernels with the unpatched net/mpls/af_mpls.c code
  • Systems with the MPLS kernel module loaded and exposed to local users

Discovery Timeline

  • 2026-05-01 - CVE-2026-43042 published to NVD
  • 2026-05-03 - Last updated in NVD database

Technical Details for CVE-2026-43042

Vulnerability Analysis

The Linux kernel MPLS implementation maintains a label forwarding table consisting of two related fields: platform_labels (the size of the table) and platform_label (the pointer to the table itself). Writers serialize updates with platform_mutex, while readers rely on Read-Copy-Update (RCU) for lock-free traversal.

During a table resize via resize_platform_label_table, the size and the pointer are updated as separate operations. RCU readers in mpls_forward and mpls_dump_routes may observe a torn state where the size value corresponds to one table while the pointer references another. When a reader indexes into the array using the inconsistent size, it can dereference memory outside the bounds of the active allocation.

The function mpls_label_ok is also affected. The patch notes that the existing RTA_DST validation in rtm_to_route_config, performed outside platform_mutex, is not sufficient on its own. Re-validation inside mpls_route_add and mpls_route_del prevents exploitation through that path.

Root Cause

The root cause is the absence of an atomic snapshot mechanism for the (platform_labels, platform_label) pair. RCU alone protects the pointer dereference but does not coordinate the read of the related size value, producing a Time-of-Check Time-of-Use (TOCTOU) condition between the two fields.

Attack Vector

Exploitation requires local access and the privilege to invoke MPLS route operations, typically CAP_NET_ADMIN within a user namespace. An attacker races concurrent route additions, deletions, or dumps against a triggered table resize. A successful race causes the forwarding or dump path to read past the end of the resized array. The result is kernel memory disclosure or a kernel panic, depending on the surrounding allocator state.

No verified proof-of-concept code is publicly available.
Refer to the upstream kernel commits for the precise code paths
and the seqcount-based fix:
- 5bb3caf0bbfb56f1a00d2af072ac3d8395a3b9ef
- 629ec78ef8608d955ce217880cdc3e1873af3a15

Detection Methods for CVE-2026-43042

Indicators of Compromise

  • Unexpected kernel oops or panic entries in dmesg referencing mpls_forward, mpls_dump_routes, or mpls_label_ok
  • KASAN reports of out-of-bounds reads in the MPLS subsystem on instrumented kernels
  • Repeated RTM_NEWROUTE, RTM_DELROUTE, or RTM_GETROUTE netlink operations targeting AF_MPLS from unprivileged processes within user namespaces

Detection Strategies

  • Audit running kernel versions against vendor advisories to identify hosts missing the seqcount fix
  • Enable KASAN on test systems to surface OOB accesses in net/mpls/af_mpls.c during fuzzing or stress testing
  • Monitor netlink socket activity for high-frequency MPLS route mutations correlated with table resize operations

Monitoring Recommendations

  • Forward kernel logs to a centralized logging platform and alert on crashes referencing MPLS symbols
  • Track CAP_NET_ADMIN grants and user namespace creation by non-root processes
  • Inventory hosts with the mpls_router module loaded and prioritize them for patching

How to Mitigate CVE-2026-43042

Immediate Actions Required

  • Apply the upstream kernel patches referenced by commits 5bb3caf0bbfb and 629ec78ef860 or upgrade to a distribution kernel containing the seqcount fix
  • If MPLS is not required, unload the mpls_router module and blacklist it to remove the attack surface
  • Restrict creation of unprivileged user namespaces on systems where local users do not need that capability

Patch Information

The fix adds a seqcount around updates to the platform_label{,s} pair so that RCU readers retry until they observe a consistent snapshot. Distribution-specific patched kernels are tracked through the upstream stable trees. See the Kernel Git Commit Reference (5bb3caf) and the Kernel Git Commit Reference (629ec78) for the authoritative source changes.

Workarounds

  • Blacklist the mpls_router kernel module on systems that do not require label switching
  • Set kernel.unprivileged_userns_clone=0 (or the equivalent sysctl on your distribution) to prevent unprivileged users from acquiring CAP_NET_ADMIN in a namespace
  • Limit access to netlink AF_MPLS operations to trusted administrative accounts
bash
# Blacklist the MPLS module and restrict unprivileged namespaces
echo 'blacklist mpls_router' | sudo tee /etc/modprobe.d/blacklist-mpls.conf
sudo sysctl -w kernel.unprivileged_userns_clone=0
sudo rmmod mpls_router 2>/dev/null || true

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Git Commit Reference

  • Kernel Git Commit Reference
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43500: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43333: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43335: Linux Kernel Use-After-Free 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