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

CVE-2026-43391: Linux Kernel Privilege Escalation Flaw

CVE-2026-43391 is a privilege escalation vulnerability in the Linux kernel affecting namespace permission checks. This weakness could allow unauthorized access to privileged namespaces. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43391 Overview

CVE-2026-43391 affects the Linux kernel namespace filesystem (nsfs), where insufficient permission checks during handle opening allow privileged services to access namespaces belonging to other privileged services. The flaw exists in the namespace handle-open path, which previously did not enforce the may_see_all_namespaces() policy. As a result, isolated privileged workloads can leak information across what should be hard service boundaries. The vulnerability is local in scope but produces high impact across confidentiality, integrity, and availability when chained with namespace abuse. Upstream maintainers resolved the issue by routing handle opens through the centralized permission helper.

Critical Impact

A local authenticated process with low privileges can access other privileged services' namespaces, breaking isolation guarantees and exposing sensitive runtime state across containerized or service-isolated workloads.

Affected Products

  • Linux kernel versions containing the nsfs handle-open path prior to commits 1797ee1 and d2324a9
  • Linux distributions shipping unpatched kernels with namespace filesystem support enabled
  • Container runtimes and orchestration platforms relying on namespace isolation for privileged service separation

Discovery Timeline

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

Technical Details for CVE-2026-43391

Vulnerability Analysis

The Linux kernel exposes namespaces through the nsfs pseudo-filesystem, allowing processes to obtain file descriptors that reference specific namespace instances. Opening a handle to a namespace returns a reference that can be passed to setns() or inspected via procfs-style operations. Prior to the fix, the handle-opening code did not enforce a unified policy on which caller may see which namespace. Privileged services running with elevated capabilities could therefore observe namespaces owned by unrelated privileged services. This breaks the operating assumption that namespace visibility is bounded by ownership and capability scope. The result is a cross-service information disclosure primitive that may be combined with other operations to achieve broader compromise.

Root Cause

The root cause is a missing centralized permission check in the nsfs handle-open code path. The kernel already defines a may_see_all_namespaces() helper that encodes the intended policy, but the namespace handle-opening routine did not invoke it. Privileged-but-distinct services therefore bypassed the intended boundary. The patch routes the open path through may_see_all_namespaces() until a broader nstree redesign lands.

Attack Vector

Exploitation requires local access and low privileges, with no user interaction. A process that holds sufficient capabilities to interact with nsfs can open handles to namespaces belonging to other privileged services. Because the scope is Changed in the CVSS vector, the impact extends beyond the attacker's original security boundary. The vulnerability does not require a network path and is not remotely exploitable.

No public proof-of-concept exploit is available. The vulnerability mechanism is described in the upstream commits Linux Kernel Commit 1797ee1 and Linux Kernel Commit d2324a9.

Detection Methods for CVE-2026-43391

Indicators of Compromise

  • Unexpected open() or openat() system calls targeting /proc/<pid>/ns/* paths from processes that do not own the target namespace
  • Cross-service setns() invocations referencing namespace file descriptors of unrelated privileged services
  • Audit records showing privileged daemons enumerating namespace inodes outside their service boundary

Detection Strategies

  • Enable Linux audit rules on the openat syscall filtered to paths under /proc/*/ns/ to surface unauthorized handle opens
  • Correlate process credentials and namespace ownership at the time of namespace handle access using eBPF tracing
  • Compare the running kernel build identifier against vendor advisories to flag hosts missing the may_see_all_namespaces() enforcement

Monitoring Recommendations

  • Collect telemetry on setns, unshare, and nsfs access patterns across container hosts and forward to a central analytics platform
  • Alert on any process accessing namespace file descriptors associated with a different service account or cgroup boundary
  • Track kernel package versions across the fleet and report hosts running pre-patch builds

How to Mitigate CVE-2026-43391

Immediate Actions Required

  • Identify all hosts running Linux kernel builds that predate the nsfs permission tightening commits and prioritize them for patching
  • Inventory privileged services that interact with nsfs and restrict their capability sets where feasible
  • Apply distribution-provided kernel updates as soon as they include the upstream fix

Patch Information

The upstream fix is contained in Linux Kernel Commit 1797ee1 and the backport Linux Kernel Commit d2324a9. The patch routes namespace handle opening through the existing may_see_all_namespaces() helper, centralizing the policy until the namespace tree refactor is complete. Apply the kernel update from your distribution and reboot affected hosts.

Workarounds

  • Reduce the capability footprint of services that do not require CAP_SYS_ADMIN or namespace introspection rights
  • Enforce mandatory access control profiles such as SELinux or AppArmor to restrict nsfs access by privileged daemons
  • Separate sensitive privileged workloads onto dedicated hosts where namespace isolation must be guaranteed
bash
# Verify kernel version and confirm the patch is applied
uname -r
# Compare against your distribution's advisory for CVE-2026-43391
# Example: check audit logs for nsfs handle access
auditctl -w /proc -p r -k nsfs_access
ausearch -k nsfs_access | grep -E 'ns/(mnt|pid|net|user|ipc|uts|cgroup)'

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.01%

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

  • Linux Kernel Commit d2324a9
  • Related CVEs
  • CVE-2026-43347: Linux Kernel Privilege Escalation Flaw

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

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

  • CVE-2026-43463: Linux Kernel Privilege Escalation Bug
Default Legacy - Prefooter | 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