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

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

CVE-2026-0665 is a denial of service flaw in QEMU's KVM Xen guest support caused by an off-by-one error. Malicious guests can trigger out-of-bounds heap accesses leading to crashes or memory corruption.

Published: February 20, 2026

CVE-2026-0665 Overview

An off-by-one error was discovered in QEMU's KVM Xen guest support that enables malicious guests to trigger out-of-bounds heap accesses. This vulnerability exists within the emulated Xen physdev hypercall interface, allowing attackers with local access from within a guest virtual machine to corrupt heap memory in the QEMU process, potentially leading to denial of service or memory corruption.

Critical Impact

A malicious guest VM can exploit this off-by-one error to trigger out-of-bounds heap writes in the QEMU hypervisor process, potentially crashing the host or corrupting memory.

Affected Products

  • QEMU with KVM Xen guest support enabled
  • Linux-based virtualization platforms using QEMU/KVM with Xen emulation
  • Systems running Xen-compatible guest operating systems under QEMU

Discovery Timeline

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

Technical Details for CVE-2026-0665

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-bounds Write), which occurs when the software writes data past the end, or before the beginning, of the intended buffer. In this case, an off-by-one error in the Xen physdev hypercall emulation code allows a malicious guest to manipulate hypercall parameters in a way that causes the QEMU process to write beyond allocated heap boundaries.

The off-by-one error is a common programming mistake where a loop iterates one time too many or too few, or where an array index calculation is off by one position. In virtualization contexts, such errors are particularly dangerous as they can allow a guest VM to compromise the host system's hypervisor process.

Root Cause

The root cause is an off-by-one boundary check error in QEMU's implementation of the Xen physdev hypercall interface for KVM guests. When processing certain hypercall requests from Xen-compatible guests, the boundary validation logic incorrectly allows access to one element beyond the intended heap buffer allocation. This off-by-one miscalculation enables controlled out-of-bounds memory access.

Attack Vector

The attack requires local access from within a guest virtual machine running on an affected QEMU/KVM host with Xen guest support enabled. An attacker must have the ability to execute code within the guest OS and make hypercalls to the emulated Xen physdev interface. By crafting specific physdev hypercall parameters, the attacker can trigger the off-by-one error and cause out-of-bounds heap access in the QEMU process running on the host.

This is a local attack vector that requires low privileges within the guest but can affect the host hypervisor process, representing a potential guest-to-host escape scenario. The vulnerability can be exploited to cause denial of service through QEMU process crashes or potentially achieve more severe impacts through heap memory corruption.

Detection Methods for CVE-2026-0665

Indicators of Compromise

  • Unexpected QEMU process crashes or segmentation faults on the host system
  • Heap corruption errors in QEMU logs or system crash dumps
  • Unusual hypercall activity from Xen-compatible guest VMs
  • Memory access violation errors related to physdev hypercall handling

Detection Strategies

  • Monitor QEMU process stability and capture crash dumps for analysis
  • Implement memory debugging tools (such as AddressSanitizer) in development/staging environments to detect heap overflows
  • Review system logs for QEMU crashes that reference Xen physdev or hypercall code paths
  • Use host-based intrusion detection to identify anomalous guest VM behavior

Monitoring Recommendations

  • Enable detailed logging for QEMU processes handling Xen-compatible guests
  • Configure alerting on unexpected QEMU process terminations
  • Monitor memory utilization patterns of hypervisor processes
  • Implement crash analysis tooling to identify patterns consistent with this vulnerability

How to Mitigate CVE-2026-0665

Immediate Actions Required

  • Review and update QEMU installations to the latest patched version when available
  • Consider disabling Xen guest support in QEMU configurations if not required
  • Limit access to virtualization infrastructure to trusted administrators
  • Isolate critical workloads from potentially malicious guest VMs

Patch Information

Consult the Red Hat CVE-2026-0665 Advisory for official patch information and updates. Additional technical details can be found in Red Hat Bug Report #2428640. Organizations should monitor their Linux distribution vendor channels for security updates addressing this vulnerability.

Workarounds

  • Disable Xen guest emulation support in QEMU if not operationally required by removing or disabling the -xen-domid and related Xen options
  • Implement strict guest isolation policies to limit the impact of potentially compromised VMs
  • Use seccomp filtering or AppArmor/SELinux profiles to restrict QEMU process capabilities
  • Consider migrating critical workloads to hosts without Xen guest compatibility enabled until patches are applied
bash
# Verify Xen guest support status in QEMU configuration
# Check if Xen-specific options are enabled in VM configurations
grep -r "xen" /etc/libvirt/qemu/*.xml

# Disable Xen guest support by removing Xen-related parameters from QEMU command lines
# Review and modify VM definitions to remove: -xen-domid, -xen-attach options

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechQemu

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Red Hat CVE-2026-0665 Advisory

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

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

  • CVE-2024-7409: QEMU NBD Server DoS Vulnerability

  • CVE-2024-4467: QEMU Disk Image Utility 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