Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-47291

CVE-2025-47291: Containerd CRI DoS Vulnerability

CVE-2025-47291 is a denial of service flaw in containerd's CRI implementation affecting versions 2.0.1 to 2.0.4. Usernamespaced containers bypass Kubernetes cgroup limits, risking node availability. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-47291 Overview

CVE-2025-47291 is a vulnerability in containerd, the popular open-source container runtime. A bug was discovered in containerd's Container Runtime Interface (CRI) implementation where usernamespaced containers are not properly placed under the Kubernetes cgroup hierarchy. This misconfiguration causes certain Kubernetes resource limits to be ignored, potentially leading to a denial of service condition on the Kubernetes node.

Critical Impact

Kubernetes resource limits may not be enforced for usernamespaced pods, allowing containers to consume node resources without restriction and potentially causing node-level denial of service.

Affected Products

  • containerd versions 2.0.1 through 2.0.4
  • linuxfoundation containerd

Discovery Timeline

  • 2025-05-21 - CVE-2025-47291 published to NVD
  • 2025-09-19 - Last updated in NVD database

Technical Details for CVE-2025-47291

Vulnerability Analysis

This vulnerability stems from improper privilege management (CWE-266) in containerd's CRI implementation. When containerd creates usernamespaced containers, it fails to correctly position them within the Kubernetes cgroup hierarchy. Cgroups (control groups) are a Linux kernel feature that Kubernetes relies upon to enforce resource limits such as CPU, memory, and I/O constraints on pods and containers.

Under normal operation, Kubernetes sets resource limits through cgroup controllers, and the container runtime ensures these limits are applied to container processes. However, due to this bug, usernamespaced containers bypass this mechanism entirely, meaning they operate outside the expected resource constraint boundaries.

The vulnerability requires local access to exploit, as an attacker would need the ability to deploy pods with user namespace isolation enabled on the affected Kubernetes cluster. While no public exploits are currently available, the potential for resource exhaustion makes this a significant concern for multi-tenant Kubernetes environments.

Root Cause

The root cause is a logic error in containerd's CRI implementation where usernamespaced container processes are not correctly associated with the Kubernetes-managed cgroup hierarchy. When user namespaces are enabled for a container, the code path responsible for cgroup assignment fails to properly link the container's processes to the appropriate cgroup subtree that Kubernetes monitors and enforces limits on.

Attack Vector

The attack vector is local, requiring an attacker to have the ability to create and deploy pods on a Kubernetes cluster running a vulnerable version of containerd. The attack scenario involves:

  1. An attacker deploys a pod configured to use user namespaces on a vulnerable Kubernetes node
  2. The pod's containers are created outside the proper cgroup hierarchy
  3. Kubernetes resource limits (CPU, memory, etc.) are not enforced on these containers
  4. The attacker's containers can consume unlimited node resources, starving other workloads and potentially causing node instability or complete denial of service

For detailed technical information about the vulnerability mechanism and its exploitation, refer to the GitHub Security Advisory.

Detection Methods for CVE-2025-47291

Indicators of Compromise

  • Pods using user namespaces with unexpectedly high resource consumption that exceeds their configured limits
  • Kubernetes node resource exhaustion despite properly configured pod resource quotas
  • Cgroup hierarchy showing usernamespaced containers outside the expected kubepods cgroup subtree
  • Node-level OOM (Out of Memory) events occurring when pod limits should prevent such conditions

Detection Strategies

  • Monitor containerd version across all Kubernetes nodes and flag any instances running versions 2.0.1 through 2.0.4
  • Implement cgroup auditing to verify all container processes are correctly placed under the Kubernetes cgroup hierarchy
  • Deploy node-level resource monitoring that compares actual container resource usage against configured Kubernetes limits
  • Review kubelet logs for resource limit enforcement anomalies

Monitoring Recommendations

  • Set up alerts for Kubernetes nodes experiencing unexpected resource pressure when pod limits appear adequate
  • Monitor for discrepancies between pod resource specifications and actual resource consumption metrics
  • Implement continuous compliance scanning to detect vulnerable containerd versions in your container infrastructure
  • Use SentinelOne Singularity Platform to monitor container runtime behavior and detect anomalous resource consumption patterns

How to Mitigate CVE-2025-47291

Immediate Actions Required

  • Upgrade containerd to version 2.0.5 or later, or 2.1.0 or later on all affected Kubernetes nodes
  • Temporarily disable usernamespaced pods in Kubernetes clusters running vulnerable containerd versions
  • Audit existing deployments to identify any pods currently using user namespaces
  • Implement node resource monitoring to detect potential exploitation attempts before upgrading

Patch Information

The containerd maintainers have released fixed versions that properly place usernamespaced containers under the Kubernetes cgroup hierarchy:

  • containerd 2.0.5+ - Fixes the cgroup hierarchy issue for the 2.0.x branch
  • containerd 2.1.0+ - Includes the fix in the 2.1.x branch

Users should upgrade to these versions as soon as possible. For complete patch details and upgrade instructions, see the GitHub Security Advisory.

Workarounds

  • Disable user namespace support in Kubernetes by setting hostUsers: true or removing user namespace configuration from pod specifications
  • Implement admission controllers to block pods requesting user namespaces until the upgrade is complete
  • Apply node-level resource limits as an additional layer of protection using kernel-level cgroup constraints
  • Consider isolating workloads requiring user namespaces to dedicated nodes that can be prioritized for patching
bash
# Configuration example
# Verify containerd version on Kubernetes nodes
containerd --version

# Check if usernamespaced pods are deployed (requires kubectl access)
kubectl get pods --all-namespaces -o json | jq '.items[] | select(.spec.hostUsers == false) | .metadata.name'

# Upgrade containerd (example for apt-based systems)
sudo apt-get update
sudo apt-get install containerd.io=2.0.5-1
sudo systemctl restart containerd

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechContainerd

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-266
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2022-31030: Containerd CRI ExecSync DoS Vulnerability

  • CVE-2023-25173: Containerd Privilege Escalation Vulnerability

  • CVE-2021-21334: Containerd Information Disclosure Flaw

  • CVE-2020-15257: Containerd Privilege Escalation Vulnerability
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