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

CVE-2025-62161: Youki Container Runtime Escape Vulnerability

CVE-2025-62161 is a privilege escalation flaw in Youki-dev Youki container runtime that enables container escape through improper /dev/null validation. This article covers technical details, affected versions, and mitigation.

Published: April 1, 2026

CVE-2025-62161 Overview

CVE-2025-62161 is a container escape vulnerability affecting Youki, a container runtime written in Rust. The vulnerability exists in versions 0.5.6 and below, where insufficient validation of the source /dev/null allows attackers to escape container isolation when Youki utilizes bind mounting the container's /dev/null as a file mask.

Critical Impact

This vulnerability enables container escape, allowing malicious actors to break out of container isolation and potentially compromise the host system or other containers on the same host.

Affected Products

  • youki-dev youki versions 0.5.6 and below
  • Rust-based container deployments using vulnerable Youki versions
  • Container orchestration systems relying on Youki as the runtime

Discovery Timeline

  • 2025-11-06 - CVE-2025-62161 published to NVD
  • 2025-11-10 - Last updated in NVD database

Technical Details for CVE-2025-62161

Vulnerability Analysis

This vulnerability is classified under CWE-61 (UNIX Symbolic Link Following), indicating a fundamental flaw in how Youki handles symbolic links during file masking operations. The container runtime fails to properly validate the source of /dev/null before performing bind mount operations, creating a pathway for container escape.

Container runtimes use file masking with /dev/null to hide sensitive files or directories from containerized processes. When a container attempts to read a masked path, it receives data from /dev/null instead. However, if the source validation is insufficient, an attacker can manipulate the symlink resolution to escape the container's filesystem namespace.

Root Cause

The root cause lies in the insufficient initial validation of the source /dev/null during bind mount operations. When Youki performs file masking by bind mounting /dev/null over sensitive paths, it does not adequately verify that the source path truly resolves to the expected device node. This allows an attacker to exploit symlink race conditions or symlink substitution attacks to redirect the bind mount operation.

The vulnerability was addressed by introducing the pathrs library (version 0.2.1) which provides safe path resolution that prevents symlink-based attacks.

Attack Vector

The attack requires local access to a container running on a vulnerable Youki instance. An attacker with the ability to execute code within a container can exploit the symlink validation weakness during the file masking process. By manipulating symbolic links at the right moment, the attacker can redirect bind mount operations to access files or directories outside the container's intended namespace.

The following patch changes show the addition of the pathrs library for safe path resolution:

text
 [dependencies]
 nix = { version = "0.29.0", features = ["signal", "user", "fs"] }
 procfs = "0.17.0"
+pathrs = "0.2.1"
 oci-spec = { version = "~0.8.3", features = ["runtime"] }
 fixedbitset = "0.5.7"
 serde = { version = "1.0", features = ["derive"] }

Source: GitHub Commit 5886c91

Detection Methods for CVE-2025-62161

Indicators of Compromise

  • Unexpected symbolic link creation or modification in container filesystem paths
  • Anomalous bind mount operations originating from containerized processes
  • Container processes accessing host filesystem paths outside their namespace
  • Unusual /dev/null symlink resolutions or modifications

Detection Strategies

  • Monitor container runtime logs for bind mount operations involving /dev/null
  • Implement file integrity monitoring on container filesystem boundaries
  • Deploy runtime security tools that detect symlink manipulation within containers
  • Audit Youki version deployments across container infrastructure to identify vulnerable instances

Monitoring Recommendations

  • Enable verbose logging for Youki container runtime operations
  • Implement syscall monitoring for mount, symlink, and readlink operations from containers
  • Deploy container-aware EDR solutions that can detect namespace escape attempts
  • Configure alerts for unexpected file access patterns crossing container boundaries

How to Mitigate CVE-2025-62161

Immediate Actions Required

  • Upgrade Youki to version 0.5.7 or later immediately
  • Audit all container deployments to identify systems running vulnerable Youki versions
  • Review container security policies and restrict unnecessary capabilities
  • Implement additional runtime security controls while patching is in progress

Patch Information

The vulnerability is fixed in Youki version 0.5.7. The fix introduces the pathrs library for safe path resolution, preventing symlink-based attacks during file masking operations. The security patch can be found in commit 5886c91073b9be748bd8d5aed49c4a820548030a.

For detailed information, review the GitHub Security Advisory GHSA-4g74-7cff-xcv8.

Workarounds

  • Consider using alternative OCI-compliant container runtimes until upgrade is possible
  • Implement strict seccomp profiles to limit mount-related syscalls from containers
  • Deploy network segmentation to limit blast radius of potential container escapes
  • Apply least-privilege principles to container workloads to minimize exploitation impact
bash
# Verify Youki version and upgrade to patched version
youki --version
# If version <= 0.5.6, upgrade immediately
cargo install youki --version ">=0.5.7"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechYouki

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:X/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-61
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-4g74-7cff-xcv8
  • Related CVEs
  • CVE-2025-62596: Youki Container Runtime Privilege Escalation
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