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

CVE-2026-43472: Linux Kernel Privilege Escalation Flaw

CVE-2026-43472 is a privilege escalation vulnerability in the Linux kernel's unshare(2) system call that can leave processes with detached filesystem mounts. This article covers the technical details, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43472 Overview

CVE-2026-43472 is a Linux kernel vulnerability in the unshare(2) system call. The flaw resides in the unshare_fs() handling path within create_new_namespaces(). When a caller invokes unshare(2) with both CLONE_NEWNS and CLONE_NEWCGROUP flags, and the calling task's fs_struct has not been previously shared, the kernel passes current->fs directly to copy_mnt_ns() instead of a private copy. If a subsequent namespace allocation such as copy_cgroup_ns() fails, the unshare operation returns an error, but current->fs->root and current->fs->pwd are left pointing to detached mounts from the dissolved namespace.

Critical Impact

A failed unshare(2) call leaves the calling process with its root and working directory anchored to detached mounts, producing inconsistent filesystem state. The defect has existed since unshare(2) was introduced.

Affected Products

  • Linux kernel (mainline)
  • Linux kernel stable branches receiving the referenced backports
  • Linux distributions packaging affected stable kernel versions

Discovery Timeline

  • 2026-05-08 - CVE-2026-43472 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43472

Vulnerability Analysis

The defect is a logic flaw in the Linux kernel namespace allocation path. The unshare(2) syscall allows a process to detach selected execution-context elements into new namespaces. When CLONE_NEWNS is set, copy_mnt_ns() is invoked to create a new mount namespace and rebind the caller's fs_struct pwd and root to entries in that namespace.

The kernel optimizes the case where current->fs->users == 1 by skipping allocation of a private fs_struct. This optimization breaks correctness when additional namespace operations follow. If copy_cgroup_ns() or any subsequent allocation in create_new_namespaces() fails, the kernel calls put_mnt_ns() to dissolve the new mount namespace. The fs_struct fields, however, still reference dentries inside the destroyed namespace.

Root Cause

The root cause is conditional allocation of fs_struct based on the share count rather than the operation being requested. When CLONE_NEWNS is supplied, the code path assumes a private fs_struct exists, but the share-count optimization can leave the caller's original fs_struct in use. Combined with rollback handling that dissolves the new mount namespace on partial failure, the caller's pwd and root are pinned to detached mounts. The fix treats CLONE_NEWNS as an unconditional trigger for copy_fs_struct(), guaranteeing copy_mnt_ns() always receives a freshly allocated fs_struct.

Attack Vector

Exploitation requires local code execution to invoke unshare(2) with crafted flag combinations. An unprivileged process able to call unshare(CLONE_NEWNS | CLONE_NEWCGROUP) under memory pressure or other induced failure conditions can reach the inconsistent state. The vulnerability does not provide a use-after-free primitive because the detached mounts remain pinned, but it produces filesystem-context corruption that can interact poorly with subsequent pivot_root() and fork() operations. See the Linux Kernel Commit d3ffc8f13034 for the corrective patch.

Detection Methods for CVE-2026-43472

Indicators of Compromise

  • Processes reporting pwd or root paths under /proc/<pid>/ that resolve to detached or unreachable mount points
  • Repeated unshare(2) syscalls returning -ENOMEM followed by anomalous filesystem behavior in the calling process
  • Container runtime or sandbox tools failing namespace setup with concurrent mount namespace dissolution events

Detection Strategies

  • Audit kernel versions against the fixing commits listed in the kernel.org references to confirm whether the patch is present
  • Monitor unshare(2) syscall telemetry via auditd or eBPF probes, correlating failed calls with subsequent process state inconsistencies
  • Track unexpected put_mnt_ns() paths through tracepoints when both CLONE_NEWNS and additional namespace flags are present

Monitoring Recommendations

  • Enable kernel audit rules for unshare and clone syscalls in environments running container or sandbox workloads
  • Review crash and warning logs for dmesg entries referencing mount namespace teardown after failed namespace creation
  • Inventory deployed kernel build hashes across hosts to identify systems lacking the stable backport

How to Mitigate CVE-2026-43472

Immediate Actions Required

  • Apply the upstream stable kernel update containing the unshare_fs() correction and reboot affected hosts
  • Identify all systems running kernel versions predating the referenced commits and schedule patching
  • Restrict use of unprivileged user namespaces where not required for workload functionality

Patch Information

The fix has been merged into the mainline Linux kernel and backported to multiple stable branches. The fix forces allocation of a new fs_struct whenever CLONE_NEWNS is requested, regardless of the original share count. Refer to the kernel.org references for each stable branch:

  • Linux Kernel Commit 42e21e74061
  • Linux Kernel Commit 6c4b2243cb6
  • Linux Kernel Commit 845bf3c6963
  • Linux Kernel Commit aa9ebc08450
  • Linux Kernel Commit af8f4be3b68
  • Linux Kernel Commit d0d99f60538
  • Linux Kernel Commit d3ffc8f13034
  • Linux Kernel Commit d7963d6997f

Workarounds

  • Disable unprivileged user namespaces by setting kernel.unprivileged_userns_clone=0 where supported, reducing attacker reach to unshare(2)
  • Apply seccomp profiles in container runtimes to restrict the unshare syscall to required flag combinations
  • Limit memory pressure conditions on namespace-heavy hosts to reduce the probability of triggering the failure path
bash
# Configuration example: restrict unprivileged user namespaces via sysctl
sudo sysctl -w kernel.unprivileged_userns_clone=0
echo 'kernel.unprivileged_userns_clone=0' | sudo tee /etc/sysctl.d/99-cve-2026-43472.conf

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.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 42e21e74061

  • Linux Kernel Commit 6c4b2243cb6

  • Linux Kernel Commit 845bf3c6963

  • Linux Kernel Commit aa9ebc08450

  • Linux Kernel Commit af8f4be3b68

  • Linux Kernel Commit d0d99f60538

  • Linux Kernel Commit d3ffc8f13034

  • Linux Kernel Commit d7963d6997f
  • 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