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-2026-23215

CVE-2026-23215: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23215 is a use-after-free flaw in the Linux kernel's x86/vmware hypercall handling that causes page faults when register state is corrupted. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23215 Overview

A vulnerability has been identified in the Linux kernel's x86/vmware subsystem related to improper handling of hypercall register states. The issue manifests when the QEMU VMware mouse emulation clears the top 32 bits of the %rdi register, which the kernel uses to store valid pointers. This register corruption leads to kernel panics when the affected memory addresses are subsequently dereferenced.

The vulnerability was discovered through Fedora QA testing, which reported kernel panics characterized by page faults when attempting supervisor write access to non-present pages. The root cause lies in QEMU's vmmouse driver implementation, which saves and restores register state using a uint32_t data[6] array, inadvertently truncating 64-bit addresses to 32 bits.

Critical Impact

This vulnerability can cause kernel panics and system crashes in virtualized environments running Linux guests with VMware mouse emulation, potentially leading to denial of service conditions.

Affected Products

  • Linux Kernel (x86/vmware subsystem)
  • Systems using QEMU VMware mouse emulation
  • Virtualized Linux environments with vmmouse driver

Discovery Timeline

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

Technical Details for CVE-2026-23215

Vulnerability Analysis

This vulnerability represents a kernel-level memory corruption issue caused by improper register handling during VMware hypercalls. When the kernel invokes vmware_hypercall4() or vmware_hypercall3(), it expects the %rdi register to retain its complete 64-bit value across the hypercall boundary. However, QEMU's vmmouse driver implementation uses 32-bit integers for register state preservation, causing the upper 32 bits to be zeroed when the state is restored.

The technical manifestation occurs when a valid kernel stack address (such as 0xff5eeb3240003e54) is stored in %rdi before the hypercall. After the hypercall returns, the register contains only 0x40003e54—the lower 32 bits of the original address. When this corrupted pointer is dereferenced, it points to an invalid memory location, triggering a page fault exception that the kernel cannot handle.

The call trace indicates the issue propagates through vmmouse_report_events() → psmouse_handle_byte() → ps2_interrupt(), demonstrating that the vulnerability is triggered during normal mouse event processing in virtualized environments.

Root Cause

The root cause is a combination of two factors: QEMU's vmmouse driver using 32-bit storage (uint32_t data[6]) for register values that should be 64-bit, and the Linux kernel not marking %rdi and %rsi as clobbered registers for the affected hypercalls. While the proper fix belongs in QEMU, the kernel patch provides a workaround by explicitly marking these registers as clobbered in vmware_hypercall3() and vmware_hypercall4(), preventing the compiler from assuming these registers retain their values across the hypercall.

Attack Vector

The vulnerability is triggered locally through normal operation of the vmmouse driver in virtualized environments. While not directly exploitable for code execution, an attacker with local access could potentially trigger the condition to cause denial of service. The issue specifically affects vmware_hypercall3() and vmware_hypercall4() functions, where the compiler may keep live pointers in the %rdi or %rsi registers across the hypercall boundary.

The kernel fix works around this QEMU bug by instructing the compiler to treat %rdi and %rsi as clobbered by these hypercalls, ensuring no important state is kept in these registers. This approach has minimal impact on code generation since it's rare for the compiler to keep values live across hypercalls in these specific contexts.

Detection Methods for CVE-2026-23215

Indicators of Compromise

  • Kernel panic messages containing "BUG: unable to handle page fault for address" with addresses showing truncated 64-bit values (e.g., addresses starting with 0x4000 or similar patterns suggesting upper bits cleared)
  • Stack traces showing vmware_hypercall4.constprop or vmware_hypercall3 in the call chain
  • Page fault error codes indicating supervisor write access to non-present pages (error_code(0x0002))
  • System crashes during mouse event processing in VMware-emulated environments

Detection Strategies

  • Monitor kernel logs (dmesg) for page fault exceptions occurring within VMware hypercall functions
  • Implement automated log parsing to detect patterns matching the specific error signatures (RIP: 0010:vmware_hypercall4 or similar)
  • Deploy kernel crash dump analysis tools to identify truncated pointer patterns in register states
  • Review system stability reports for recurring crashes in virtualized Linux environments using QEMU with VMware emulation

Monitoring Recommendations

  • Configure kdump or crash kernel facilities to capture memory dumps when kernel panics occur for post-incident analysis
  • Set up alerting for repeated vmmouse driver failures or PS/2 interrupt handling errors
  • Monitor virtual machine stability metrics, particularly focusing on guest kernel crash frequency
  • Implement automated kernel version tracking to ensure patched versions are deployed across virtualized infrastructure

How to Mitigate CVE-2026-23215

Immediate Actions Required

  • Apply the latest kernel patches that mark %rdi and %rsi as clobbered for vmware_hypercall3() and vmware_hypercall4() functions
  • Consider disabling the vmmouse driver temporarily in affected environments by adding psmouse.proto=bare to kernel boot parameters
  • Evaluate upgrading to a patched QEMU version that properly handles 64-bit register values in the vmmouse driver
  • Review virtualization infrastructure to identify systems running affected kernel and QEMU combinations

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fixes mark the RDI and RSI registers as clobbered for the affected hypercalls, preventing the compiler from keeping live state in these registers across the hypercall boundary. Patches are available through the following commits:

  • Kernel Patch Commit 2687c848
  • Kernel Patch Commit 2f467a92
  • Kernel Patch Commit feb603a6

Workarounds

  • Disable VMware mouse emulation in QEMU and use alternative input methods such as tablet devices or VNC pointer
  • Boot affected systems with kernel parameter psmouse.proto=bare to use a basic PS/2 protocol without vmmouse features
  • If possible, switch to KVM-native input device emulation instead of VMware emulation in QEMU configurations
  • Consider using libvirt's <input type='tablet'> configuration instead of vmmouse for affected virtual machines
bash
# Workaround: Disable vmmouse driver via kernel parameters
# Add to GRUB configuration or boot command line
GRUB_CMDLINE_LINUX="psmouse.proto=bare"

# After modifying /etc/default/grub, regenerate configuration
sudo grub2-mkconfig -o /boot/grub2/grub.cfg

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/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Commit 2687c848

  • Kernel Patch Commit 2f467a92

  • Kernel Patch Commit feb603a6
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31469: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31457: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31444: Linux Kernel Use-After-Free 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