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

CVE-2025-11234: QEMU Use-After-Free Vulnerability

CVE-2025-11234 is a use-after-free flaw in QEMU's QIOChannelWebsock that enables denial of service attacks via VNC WebSocket. This article covers technical details, affected versions, security impact, and mitigation.

Published: April 22, 2026

CVE-2025-11234 Overview

A use-after-free vulnerability has been identified in QEMU's QIOChannelWebsock implementation. The flaw occurs when the QIOChannelWebsock object is freed while waiting to complete a WebSocket handshake, causing a GSource to be leaked. This memory leak allows a callback to fire after the object has been deallocated, triggering a use-after-free condition when the channel is accessed. The vulnerability can be exploited by a malicious client with network access to the VNC WebSocket port to cause a denial of service during the WebSocket handshake phase, even before VNC client authentication takes place.

Critical Impact

Remote attackers can crash QEMU virtual machines by exploiting this use-after-free vulnerability during WebSocket handshake, causing denial of service to virtualized workloads without requiring authentication.

Affected Products

  • QEMU with VNC WebSocket support enabled
  • Red Hat Enterprise Linux with QEMU virtualization packages
  • Systems exposing VNC WebSocket ports to untrusted networks

Discovery Timeline

  • 2025-10-03 - CVE-2025-11234 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-11234

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption flaw that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of QEMU's QIOChannelWebsock implementation, the issue stems from improper lifecycle management of GSource objects during WebSocket handshake operations.

When a WebSocket connection is initiated to QEMU's VNC service, the QIOChannelWebsock object manages the handshake process. If this object is freed prematurely—for instance, when a client abruptly disconnects or a timeout occurs during the handshake—the associated GSource event source is not properly cleaned up. This leaked GSource remains registered with the GLib main loop and can trigger its callback function at a later time. Since the callback references the now-freed QIOChannelWebsock object, this results in a use-after-free condition.

The vulnerability is particularly concerning because it can be triggered remotely over the network without requiring any authentication. An attacker simply needs network access to the VNC WebSocket port (typically TCP 5700-5799) to initiate malicious handshake requests that trigger the vulnerable code path.

Root Cause

The root cause lies in the improper cleanup of GSource objects within the QIOChannelWebsock destruction path. When the QIOChannelWebsock object is freed during an in-progress handshake, the code fails to detach and destroy the GSource that was registered to monitor the handshake completion. This leaves a dangling callback registered in the GLib event loop. The GSource's reference to the channel object becomes a dangling pointer, and when the event fires, the callback attempts to access freed memory, leading to undefined behavior and typically a crash.

Attack Vector

The attack vector is network-based and requires no user interaction or privileges. An attacker can exploit this vulnerability by:

  1. Establishing a TCP connection to an exposed VNC WebSocket port
  2. Initiating a WebSocket handshake request
  3. Manipulating the connection timing to cause the QIOChannelWebsock object to be freed while the handshake is incomplete
  4. The leaked GSource eventually fires its callback, accessing the freed channel memory
  5. This triggers memory corruption, resulting in a denial of service condition

The attack is particularly effective because it occurs during the pre-authentication phase of the VNC connection, meaning attackers do not need valid credentials to trigger the vulnerability.

Detection Methods for CVE-2025-11234

Indicators of Compromise

  • Unexpected QEMU process crashes or segmentation faults in virtualization hosts
  • Memory corruption errors in QEMU logs referencing QIOChannelWebsock or GSource
  • Unusual patterns of incomplete WebSocket connections to VNC ports
  • Core dumps from QEMU processes showing use-after-free patterns in stack traces

Detection Strategies

  • Monitor QEMU process stability and alert on unexpected terminations or crashes
  • Implement network intrusion detection rules for anomalous WebSocket handshake patterns on VNC ports
  • Deploy memory sanitizers (ASan/MSan) in development and testing environments to detect use-after-free conditions
  • Analyze core dumps for stack traces involving qio_channel_websock functions

Monitoring Recommendations

  • Configure centralized logging for QEMU process events and crash reports
  • Set up alerts for repeated VNC WebSocket connection failures from single source IPs
  • Monitor network traffic to VNC WebSocket ports for connection flooding patterns
  • Implement host-based monitoring for QEMU process memory usage anomalies

How to Mitigate CVE-2025-11234

Immediate Actions Required

  • Apply available security patches from your Linux distribution vendor immediately
  • Restrict network access to VNC WebSocket ports using firewall rules to trusted networks only
  • Consider disabling VNC WebSocket support if not required for your use case
  • Implement network segmentation to limit exposure of virtualization infrastructure

Patch Information

Multiple security advisories have been released to address this vulnerability. Red Hat has published several advisories including RHSA-2025:23228, RHSA-2026:0326, RHSA-2026:0332, and subsequent updates. Administrators should consult the Red Hat CVE Report for CVE-2025-11234 and Red Hat Bug Report #2401209 for detailed patch information and affected package versions.

Workarounds

  • Disable VNC WebSocket transport by configuring QEMU to use standard VNC without WebSocket encapsulation
  • Implement strict firewall rules to block external access to VNC WebSocket ports (typically 5700-5799)
  • Use VPN or SSH tunneling for remote VNC access instead of exposing WebSocket ports directly
  • Deploy a reverse proxy with connection rate limiting in front of VNC WebSocket services
bash
# Example firewall configuration to restrict VNC WebSocket access
# Allow VNC WebSocket only from trusted management network
iptables -A INPUT -p tcp --dport 5700:5799 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 5700:5799 -j DROP

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechQemu

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Red Hat Security Advisory RHSA-2025:23228

  • Red Hat Security Advisory RHSA-2026:0326

  • Red Hat Security Advisory RHSA-2026:0332

  • Red Hat Security Advisory RHSA-2026:0702

  • Red Hat Security Advisory RHSA-2026:1831

  • Red Hat Security Advisory RHSA-2026:3077

  • Red Hat Security Advisory RHSA-2026:3165

  • Red Hat Security Advisory RHSA-2026:5578

  • Red Hat CVE Report CVE-2025-11234

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

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

  • CVE-2025-8860: QEMU Information Disclosure Vulnerability

  • CVE-2026-0665: QEMU KVM Xen Guest Support DoS 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