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

CVE-2026-23405: Linux Kernel AppArmor DOS Vulnerability

CVE-2026-23405 is a denial of service vulnerability in Linux kernel AppArmor that allows unlimited nesting of policy namespaces to exhaust system resources. This post covers technical details, affected versions, and mitigations.

Published: April 2, 2026

CVE-2026-23405 Overview

A resource exhaustion vulnerability has been identified in the Linux kernel's AppArmor security module. The vulnerability exists in the handling of policy namespaces, where the number of namespace levels is not properly bounded. While the implementation relies on user namespace limits, policy namespaces are not strictly tied to user namespaces, allowing attackers to create and nest them arbitrarily deep. This can be exploited to exhaust system resources, leading to denial of service conditions.

Critical Impact

Local attackers can exhaust system resources by creating deeply nested AppArmor policy namespaces, potentially causing system instability or denial of service.

Affected Products

  • Linux Kernel (multiple versions with AppArmor enabled)
  • Systems utilizing AppArmor mandatory access control
  • Linux distributions with AppArmor security profiles enabled

Discovery Timeline

  • April 1, 2026 - CVE-2026-23405 published to NVD
  • April 1, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23405

Vulnerability Analysis

The vulnerability stems from an architectural oversight in the AppArmor security module's namespace management. AppArmor uses policy namespaces to isolate and organize security policies, providing hierarchical containment for different security contexts. However, the implementation failed to enforce a hard limit on the depth of namespace nesting.

The core issue is that while AppArmor policy namespaces conceptually relate to user namespaces, they operate independently without inheriting the depth restrictions applied to user namespaces. An attacker with the ability to create AppArmor policy namespaces can recursively nest them to arbitrary depths, consuming kernel memory and other system resources with each additional level.

Root Cause

The root cause is the absence of a hard cap on policy namespace depth in the AppArmor subsystem. The original implementation assumed that user namespace limits would indirectly constrain policy namespace creation, but this assumption proved incorrect since policy namespaces can be created and nested independently of user namespaces.

Attack Vector

An attacker with local access and sufficient privileges to create AppArmor policy namespaces can exploit this vulnerability by programmatically creating deeply nested namespace hierarchies. Each nested namespace consumes kernel memory and associated data structures. By creating thousands or millions of nested levels, an attacker can exhaust available system memory, leading to system instability, kernel panics, or denial of service conditions affecting all users and processes on the system.

The attack requires local access but can be particularly impactful in multi-tenant environments where users have limited namespace creation capabilities, or in containerized environments where AppArmor is used for workload isolation.

Detection Methods for CVE-2026-23405

Indicators of Compromise

  • Unusual memory consumption patterns in kernel space without corresponding userspace activity
  • High frequency of AppArmor namespace creation operations in audit logs
  • System performance degradation or instability without apparent cause
  • Kernel log messages related to AppArmor namespace operations or memory allocation failures

Detection Strategies

  • Monitor dmesg and kernel logs for AppArmor-related warnings or errors
  • Implement auditd rules to track namespace creation system calls
  • Use process monitoring to detect applications creating excessive namespace hierarchies
  • Deploy kernel-level resource monitoring to detect abnormal memory consumption patterns

Monitoring Recommendations

  • Enable AppArmor audit logging to track policy namespace creation events
  • Configure resource usage alerts for kernel memory consumption thresholds
  • Implement baseline monitoring for normal namespace creation patterns in your environment
  • Review container orchestration logs for unusual namespace activity

How to Mitigate CVE-2026-23405

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the namespace depth limit
  • Review and restrict permissions for creating AppArmor policy namespaces
  • Monitor systems for signs of exploitation attempts
  • Consider temporarily limiting unprivileged namespace creation via sysctl if exposure is high

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability by implementing a hard cap on policy namespace depth, aligning it with user namespace limits. The fix has been committed to the stable kernel branches. Relevant kernel commits include:

  • Kernel Commit 30603941
  • Kernel Commit 3f8699b3
  • Kernel Commit 7b6495ea
  • Kernel Commit 853ce31c
  • Kernel Commit d42b2b6b

Organizations should prioritize kernel updates through their distribution's package management system.

Workarounds

  • Restrict unprivileged user namespace creation using sysctl kernel.unprivileged_userns_clone=0 where applicable
  • Limit access to AppArmor policy management interfaces to trusted administrators only
  • Implement resource quotas and cgroups to contain potential resource exhaustion
  • Use SELinux or other MAC frameworks as alternatives if patching is delayed
bash
# Restrict unprivileged user namespace creation (temporary mitigation)
sysctl -w kernel.unprivileged_userns_clone=0

# Make the change persistent
echo "kernel.unprivileged_userns_clone=0" >> /etc/sysctl.d/99-security.conf
sysctl --system

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Commit 3f8699b3

  • Kernel Commit 7b6495ea

  • Kernel Commit 853ce31c

  • Kernel Commit d42b2b6b
  • Related CVEs
  • CVE-2026-23404: Linux Kernel AppArmor DoS Vulnerability

  • CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

  • CVE-2026-23312: Linux Kernel Kaweth Driver DoS Vulnerability

  • CVE-2026-23382: Linux Kernel HID Driver DoS Vulnerability
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