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

CVE-2026-23402: Linux Kernel Privilege Escalation Flaw

CVE-2026-23402 is a privilege escalation vulnerability in the Linux kernel KVM subsystem affecting SPTE handling in direct MMUs. This article covers the technical details, affected systems, and mitigation strategies.

Published: April 2, 2026

CVE-2026-23402 Overview

A vulnerability has been identified in the Linux kernel's KVM (Kernel-based Virtual Machine) x86/mmu subsystem related to the handling of shadow-present SPTEs (Shadow Page Table Entries). The issue occurs in KVM's sanity check mechanism when overwriting a shadow-present SPTE with another SPTE that has a different target PFN (Page Frame Number). While KVM properly tracks guest writes, writes from outside the scope of KVM, such as those from host userspace, are not detected by KVM's write tracking mechanism. This can lead to violations of KVM's shadow paging rules.

The vulnerability specifically affects direct MMUs (Memory Management Units) that do not have shadowed guest page tables. When exploited, this flaw can cause kernel warnings and potentially disrupt virtual machine operations by triggering unexpected behavior in the memory management unit.

Critical Impact

Host userspace writes can bypass KVM's write tracking mechanism, potentially breaking shadow paging rules and causing kernel warnings during virtual machine execution.

Affected Products

  • Linux Kernel (KVM x86/mmu subsystem)
  • Systems running KVM virtualization with Intel VMX/EPT

Discovery Timeline

  • 2026-04-01 - CVE CVE-2026-23402 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-23402

Vulnerability Analysis

The vulnerability resides in the KVM x86/mmu subsystem, specifically in the mmu_set_spte function located at arch/x86/kvm/mmu/mmu.c. The core issue stems from KVM's sanity check that validates whether a shadow-present SPTE is being overwritten with another SPTE containing a different target PFN.

Under normal operation, KVM's write tracking mechanism detects guest writes and handles SPTE updates appropriately. However, this tracking does not extend to writes originating from outside KVM's scope, particularly those from host userspace. When such writes occur, they can modify memory in ways that violate KVM's shadow paging assumptions.

The fix adjusts the sanity check to only apply to direct MMUs (those without shadowed guest page tables), recognizing that indirect MMUs may legitimately encounter this scenario due to host userspace activity. The kernel warning message indicates the specific condition being violated: pfn != spte_to_pfn(*sptep).

Root Cause

The root cause is an overly broad sanity check in KVM's MMU code that triggers warnings for SPTE overwrites in scenarios that are actually valid for indirect MMUs. The original implementation assumed all SPTE overwrites with different PFNs were invalid, but this assumption only holds true for direct MMUs where KVM has complete visibility into all page table modifications. For indirect MMUs with shadowed guest page tables, host userspace writes can legitimately cause this condition without representing a security violation.

Attack Vector

The attack vector involves host userspace making memory writes that are not tracked by KVM's write tracking infrastructure. When a virtual machine subsequently triggers an EPT (Extended Page Tables) page fault, the ept_page_fault handler processes the fault and eventually calls mmu_set_spte. At this point, the sanity check detects a PFN mismatch between the existing SPTE and the new SPTE being written.

The call trace demonstrates the execution flow:

  1. entry_SYSCALL_64_after_hwframe - System call entry
  2. kvm_vcpu_ioctl - VCPU ioctl handling
  3. kvm_arch_vcpu_ioctl_run - VCPU run loop
  4. vmx_handle_exit - VMX exit handling
  5. kvm_mmu_page_fault - MMU page fault handling
  6. ept_page_fault - EPT-specific page fault processing
  7. mmu_set_spte - Where the warning triggers

Detection Methods for CVE-2026-23402

Indicators of Compromise

  • Kernel warning messages containing pfn != spte_to_pfn(*sptep) in system logs
  • Warnings originating from mmu_set_spte function in the KVM module
  • Unexpected SPTE-related warnings during virtual machine operation with EPT enabled

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for warnings from the KVM module, specifically from arch/x86/kvm/mmu/mmu.c
  • Implement syslog forwarding rules to capture and alert on KVM MMU-related kernel warnings
  • Use kernel tracing tools (ftrace, eBPF) to monitor mmu_set_spte function calls and detect anomalous behavior

Monitoring Recommendations

  • Configure centralized logging to aggregate kernel messages from all KVM hosts for correlation analysis
  • Implement alerting for any KVM module warnings that indicate SPTE consistency violations
  • Monitor virtual machine stability metrics to detect potential impacts from this vulnerability

How to Mitigate CVE-2026-23402

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • Review host userspace applications that interact with memory regions used by virtual machines
  • Monitor systems for kernel warnings while awaiting patch deployment

Patch Information

The vulnerability has been resolved in the Linux kernel through multiple commits that adjust the sanity check to only warn for direct MMUs. The following kernel commits address this issue:

  • Kernel Git Commit a1e0f71
  • Kernel Git Commit bab090e
  • Kernel Git Commit df83746

Organizations should apply these patches by updating to a kernel version that includes these fixes.

Workarounds

  • Restrict host userspace access to memory regions actively used by virtual machines until the kernel is patched
  • Limit KVM-related ioctl access to trusted processes to reduce the attack surface
  • Consider temporarily disabling EPT on affected systems if experiencing significant issues, though this will impact performance
bash
# Check current kernel version
uname -r

# Verify KVM module version
modinfo kvm | grep -E "^version|^filename"

# Monitor for SPTE-related warnings
dmesg | grep -i "mmu_set_spte\|spte_to_pfn"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23417: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23401: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23409: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-23296: Linux Kernel Privilege Escalation Flaw
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