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

CVE-2025-8860: QEMU Information Disclosure Vulnerability

CVE-2025-8860 is an information disclosure flaw in QEMU's uefi-vars virtual device that exposes sensitive memory data to guest systems. This article covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-8860 Overview

A flaw was found in QEMU in the uefi-vars virtual device that can lead to information disclosure. When the guest writes to register UEFI_VARS_REG_BUFFER_SIZE, the .write callback uefi_vars_write is invoked. The function allocates a heap buffer without zeroing the memory, leaving the buffer filled with residual data from prior allocations. When the guest later reads from register UEFI_VARS_REG_PIO_BUFFER_TRANSFER, the .read callback uefi_vars_read returns leftover metadata or other sensitive process memory from the previously allocated buffer, leading to an information disclosure vulnerability.

Critical Impact

A local attacker with low privileges could exploit this vulnerability to read sensitive process memory from the QEMU host process, potentially exposing metadata, credentials, or other confidential information from prior memory allocations.

Affected Products

  • QEMU (versions with uefi-vars virtual device support)
  • Linux distributions packaging affected QEMU versions
  • Virtualization platforms utilizing vulnerable QEMU builds

Discovery Timeline

  • 2026-02-18 - CVE-2025-8860 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-8860

Vulnerability Analysis

This vulnerability is classified under CWE-212 (Improper Removal of Sensitive Information Before Storage or Transfer). The core issue stems from improper memory handling within QEMU's uefi-vars virtual device implementation. When allocating heap buffers for guest-host communication, the code fails to initialize the allocated memory to zero, leaving potentially sensitive data from previous allocations intact.

The vulnerability exists in the interaction between two callback functions. When a guest VM writes to the UEFI_VARS_REG_BUFFER_SIZE register, the uefi_vars_write function allocates a new heap buffer. Because standard memory allocation functions like malloc() do not zero-initialize memory, this buffer contains whatever data previously occupied that memory space. Subsequently, when the guest reads from UEFI_VARS_REG_PIO_BUFFER_TRANSFER, the uefi_vars_read function returns the contents of this uninitialized buffer to the guest, effectively leaking host process memory.

Root Cause

The root cause is the failure to properly sanitize heap-allocated memory before use. The uefi_vars_write callback allocates memory without using memory-zeroing allocation functions such as calloc() or explicitly zeroing the buffer with memset() after allocation. This is a common pattern in information disclosure vulnerabilities where developers assume allocated memory is clean or that the memory will be fully overwritten before being read.

Attack Vector

The attack requires local access with low privileges. An attacker operating within a guest virtual machine can exploit this vulnerability by:

  1. Triggering a write operation to the UEFI_VARS_REG_BUFFER_SIZE register to force a heap allocation
  2. Reading from the UEFI_VARS_REG_PIO_BUFFER_TRANSFER register to retrieve the uninitialized buffer contents
  3. Analyzing the returned data for sensitive information such as memory addresses, cryptographic material, or other process metadata

The vulnerability mechanism involves the guest-to-host communication path through QEMU's virtual device registers. When the guest writes to UEFI_VARS_REG_BUFFER_SIZE, it triggers the allocation of a heap buffer in the QEMU process. This buffer retains residual data from prior allocations, which is then exposed when the guest reads from UEFI_VARS_REG_PIO_BUFFER_TRANSFER. For detailed technical analysis, refer to the Red Hat CVE-2025-8860 Advisory and Red Hat Bug Report #2387588.

Detection Methods for CVE-2025-8860

Indicators of Compromise

  • Unusual patterns of register read/write operations to uefi-vars device from guest VMs
  • Abnormal memory allocation patterns in QEMU processes associated with uefi-vars operations
  • Guest processes repeatedly triggering buffer allocations and reads in rapid succession

Detection Strategies

  • Monitor QEMU process behavior for unusual uefi-vars register access patterns
  • Implement host-based intrusion detection to flag suspicious guest-to-host memory interactions
  • Review QEMU logs for anomalous virtual device operations related to UEFI variable storage
  • Deploy memory analysis tools to detect potential information leakage from QEMU processes

Monitoring Recommendations

  • Enable detailed logging for QEMU virtual device operations where supported
  • Implement runtime monitoring for QEMU processes to detect unusual memory allocation patterns
  • Configure alerts for repeated uefi-vars register interactions from guest VMs
  • Establish baselines for normal uefi-vars device usage to identify anomalous behavior

How to Mitigate CVE-2025-8860

Immediate Actions Required

  • Review deployed QEMU versions for uefi-vars virtual device support and assess exposure
  • Apply vendor-provided patches as they become available from QEMU and distribution maintainers
  • Consider disabling the uefi-vars virtual device if not required for guest VM operations
  • Monitor Red Hat and QEMU upstream advisories for patch availability

Patch Information

Patch information is available through vendor security advisories. Administrators should consult the Red Hat CVE-2025-8860 Advisory and Red Hat Bug Report #2387588 for patch status and availability. Apply vendor-provided updates as they are released through your distribution's package management system.

Workarounds

  • Disable the uefi-vars virtual device in QEMU configurations where it is not required for guest operations
  • Limit access to systems running affected QEMU versions to trusted users only
  • Implement strict guest VM isolation policies to reduce the risk of information leakage
  • Consider using alternative UEFI variable storage mechanisms if available
bash
# Configuration example - Disabling uefi-vars device
# When launching QEMU, avoid using the uefi-vars device if not required
# Review your QEMU command line or libvirt XML configurations
# to ensure uefi-vars is not enabled unnecessarily

# Check for uefi-vars device usage in running VMs
ps aux | grep qemu | grep uefi-vars

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechQemu

  • SeverityLOW

  • CVSS Score3.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-212
  • Technical References
  • Red Hat CVE-2025-8860 Advisory

  • Red Hat Bug Report #2387588
  • Related CVEs
  • CVE-2026-2243: QEMU VMDK Image DoS Vulnerability

  • CVE-2025-14876: QEMU virtio-crypto DoS Vulnerability

  • CVE-2026-0665: QEMU KVM Xen Guest Support DoS Vulnerability

  • CVE-2024-7409: QEMU NBD Server 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