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-2025-64324

CVE-2025-64324: KubeVirt Privilege Escalation Vulnerability

CVE-2025-64324 is a privilege escalation vulnerability in KubeVirt that allows attackers to read and write arbitrary files owned by privileged users. This article covers technical details, affected versions, impact, and mitigation.

Published: May 26, 2026

CVE-2025-64324 Overview

CVE-2025-64324 affects KubeVirt, a virtual machine management add-on for Kubernetes. The vulnerability resides in the hostDisk feature, which allows mounting a host file or directory owned by user ID (UID) 107 into a virtual machine. A logic flaw in the DiskOrCreate option lets an attacker read and write arbitrary files owned by more privileged users on the host system. The issue is fixed in KubeVirt versions 1.6.1 and 1.7.0.

Critical Impact

A local attacker with VM creation privileges can read and write files owned by privileged users on the Kubernetes node, breaking the VM-to-host isolation boundary.

Affected Products

  • KubeVirt versions prior to 1.6.1
  • KubeVirt 1.7.0 alpha0
  • KubeVirt 1.7.0 beta0

Discovery Timeline

  • 2025-11-18 - CVE-2025-64324 published to NVD
  • 2025-11-25 - Last updated in NVD database

Technical Details for CVE-2025-64324

Vulnerability Analysis

KubeVirt extends Kubernetes with virtual machine workloads, running VMs inside pods alongside container workloads. The hostDisk feature exposes a file or directory on the underlying Kubernetes node to a VM as a virtual disk. The feature is scoped to files owned by UID 107, the qemu user that KubeVirt uses for VM processes.

The DiskOrCreate mode of hostDisk instructs KubeVirt to create the backing file on the host if it does not already exist. The implementation does not correctly validate ownership and path semantics before performing file operations. An attacker who can submit VM specifications can manipulate this code path to interact with files outside the intended ownership scope.

This maps to [CWE-200] Exposure of Sensitive Information to an Unauthorized Actor. Successful exploitation breaks the boundary between virtual machine workloads and the host node, allowing arbitrary read and write of files owned by more privileged users, including root-owned configuration and credential files.

Root Cause

The root cause is a logic bug in the DiskOrCreate branch of the hostDisk feature. The code permits file creation and access flows that do not enforce the documented UID 107 ownership restriction. Path resolution and ownership checks are insufficient to prevent access to host files owned by other accounts.

Attack Vector

The attack vector is local. An adversary with permission to create or modify VM specifications referencing hostDisk with DiskOrCreate can target arbitrary host paths. Because the attack is mediated through legitimate KubeVirt APIs, exploitation does not require code execution on the host or container escape primitives. The EPSS score of 0.007% reflects a low probability of opportunistic exploitation, but the impact in multi-tenant Kubernetes clusters is significant.

No proof-of-concept code has been published. The technical fix is documented in pull request 15037 and commits 00d03e4 and ff3b69b in the KubeVirt GitHub repository.

Detection Methods for CVE-2025-64324

Indicators of Compromise

  • VirtualMachine or VirtualMachineInstance manifests that reference hostDisk volumes with type: DiskOrCreate pointing to sensitive host paths such as /etc, /root, /var/lib/kubelet, or /etc/kubernetes.
  • Newly created files on Kubernetes nodes under paths outside /var/lib/kubevirt that are owned by UID 107.
  • Audit log entries showing VM creation requests from unexpected namespaces or service accounts that include hostDisk volume definitions.

Detection Strategies

  • Enable Kubernetes audit logging for VirtualMachine and VirtualMachineInstance resources and alert on any specification containing hostDisk volumes.
  • Use admission controllers such as OPA Gatekeeper or Kyverno to flag or block manifests that request hostDisk with DiskOrCreate.
  • Correlate VM creation events with file integrity monitoring on Kubernetes nodes to identify unauthorized changes to host files.

Monitoring Recommendations

  • Continuously monitor KubeVirt version inventory across clusters and flag nodes running versions earlier than 1.6.1.
  • Track RBAC bindings that grant create or update on virtualmachines and virtualmachineinstances resources to non-administrative principals.
  • Log file system events on host paths exposed to VMs and alert on writes originating from qemu processes outside expected directories.

How to Mitigate CVE-2025-64324

Immediate Actions Required

  • Upgrade KubeVirt to version 1.6.1 or 1.7.0, which contain the official fix for the DiskOrCreate logic bug.
  • Inventory existing VM definitions across all namespaces and remove any unnecessary use of the hostDisk feature.
  • Restrict create and update permissions on KubeVirt custom resources to trusted administrators using Kubernetes RBAC.

Patch Information

The maintainers released fixes in KubeVirt 1.6.1 and 1.7.0. The remediation is documented in the GitHub Security Advisory GHSA-46xp-26xh-hpqh and implemented in commits 00d03e43e3bf03e563136695a4732b65ed42d764 and ff3b69b08b6b9c8d08d23735ca8d82455f790a69.

Workarounds

  • Disable the HostDisk feature gate in the KubeVirt configuration if the feature is not required for production workloads.
  • Use an admission policy to reject any VirtualMachine or VirtualMachineInstance manifest containing hostDisk volumes until clusters are upgraded.
  • Limit VM creation rights to a small set of trusted operators and isolate workloads that require hostDisk in dedicated nodes with no sensitive host data.
bash
# Example Kyverno policy snippet to block hostDisk usage cluster-wide
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
  name: block-kubevirt-hostdisk
spec:
  validationFailureAction: Enforce
  rules:
    - name: deny-hostdisk-volumes
      match:
        any:
          - resources:
              kinds:
                - kubevirt.io/v1/VirtualMachine
                - kubevirt.io/v1/VirtualMachineInstance
      validate:
        message: "hostDisk volumes are blocked due to CVE-2025-64324."
        pattern:
          spec:
            =(template):
              =(spec):
                =(volumes):
                  - X(hostDisk): "null"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechKubevirt

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Pull Request
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-7374: KubeVirt Privilege Escalation Vulnerability

  • CVE-2026-9804: KubeVirt Path Traversal Vulnerability

  • CVE-2026-6383: KubeVirt RBAC Auth Bypass Vulnerability

  • CVE-2025-14525: KubeVirt Guest Agent DoS Vulnerability
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