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
    • 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-31735

CVE-2026-31735: Linux Kernel Privilege Escalation Flaw

CVE-2026-31735 is a privilege escalation vulnerability in the Linux Kernel involving IOMMU page table unmapping. This flaw affects invalidation handling in large mappings. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-31735 Overview

CVE-2026-31735 affects the Linux kernel's IOMMU page table (iommupt) subsystem. The flaw resides in the unmap path, which can unmap more than requested when the requested ending point falls within a large or contiguous I/O Page Table Entry (IOPTE). The associated gather operation only flushed the originally requested range rather than the extended range that was actually unmapped, producing a short invalidation. The issue was identified through a new invalidation and gather test prepared for ARMv8 support, and the upstream commit notes that the root cause analysis was assisted by Claude.

Critical Impact

A short IOMMU invalidation can leave stale device translations active for memory that the kernel has unmapped, undermining IOMMU isolation guarantees on affected systems.

Affected Products

  • Linux Kernel mainline development versions 7.0-rc1 through 7.0-rc6
  • Stable trees referenced by commits 50ecd96a28f7 and ee6e69d03255
  • Systems using the iommupt page table implementation

Discovery Timeline

  • 2026-05-01 - CVE-2026-31735 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-31735

Vulnerability Analysis

The Linux kernel IOMMU framework permits an unmap operation to remove more memory than the caller requested. This occurs when the requested unmap end address lands inside a large page or contiguous IOPTE. The kernel correctly tears down the entire IOPTE because partial removal is not representable.

The defect lies in the iommu_iotlb_gather accounting. The gather structure tracks the address range that must be flushed from the IOMMU TLB. The original code recorded only the caller-requested range. When the unmap silently expanded across a large IOPTE, the gather range did not expand with it.

When the driver later issues iotlb_sync, it flushes a window smaller than the memory actually unmapped. Stale translations covering the extended region remain valid in the IOMMU TLB. A device using those cached translations can continue to access pages the kernel considers detached from the I/O virtual address space. The upstream author notes that no current caller is known to unmap a partial large entry, so the condition is unlikely to be triggered in practice.

Root Cause

The gather range update logic in the iommupt unmap path failed to widen the flush window to match the actual unmap extent. The fix expands the gather to cover the full IOPTE that was torn down, ensuring TLB invalidation matches the memory removed from translation.

Attack Vector

The CVSS vector indicates a local attack path requiring low privileges and no user interaction. Exploitation requires a kernel caller that unmaps into the middle of a large or contiguous IOPTE, a pattern not present in current in-tree callers. Successful triggering would leave a device able to read or write host memory after the kernel believes the mapping was torn down. The vulnerability is described by the maintainer as likely not triggerable through existing code paths.

No public proof-of-concept exists, and the CWE is recorded as [NVD-CWE-noinfo].

Detection Methods for CVE-2026-31735

Indicators of Compromise

  • No file-based or network indicators apply because the defect is a kernel logic flaw in IOMMU TLB invalidation accounting.
  • Unexpected device DMA to memory regions previously unmapped through iommu_unmap is a behavioral signal consistent with stale TLB entries.
  • Kernel log entries from IOMMU drivers reporting translation faults shortly after large-region unmap operations may indicate residual cached translations.

Detection Strategies

  • Inventory kernel build versions across the fleet and flag hosts running Linux 7.0-rc1 through 7.0-rc6 without the upstream fix commits applied.
  • Track uname -r output through configuration management and correlate against the patched stable tags referenced by commits 50ecd96a28f7 and ee6e69d03255.
  • Audit out-of-tree IOMMU drivers and any custom callers of iommu_unmap for code paths that could unmap partial large IOPTEs.

Monitoring Recommendations

  • Enable IOMMU driver debug logging on systems handling untrusted PCIe devices to capture invalidation anomalies.
  • Monitor for elevated rates of IOMMU page faults following kernel updates or device hot-plug events.
  • Alert on unexpected loading of kernel modules that interact with the iommupt subsystem on production hosts.

How to Mitigate CVE-2026-31735

Immediate Actions Required

  • Apply the upstream fixes referenced by Kernel Git Commit Reference and Kernel Git Commit Update.
  • Rebuild and redeploy any custom kernels based on Linux 7.0-rc1 through 7.0-rc6 after merging the patch.
  • Restrict local low-privilege access on systems that cannot be patched immediately, since exploitation requires a local context.

Patch Information

The fix is committed to the upstream stable tree. Reference commits 50ecd96a28f712f8b682c0441f4cb9b086d28816 and ee6e69d032550687a3422504bfca3f834c7b5061 extend the iommu_iotlb_gather range to cover the full IOPTE removed during an iommu_unmap call. Distributions consuming the affected release candidates should pull the corrected commits before publishing stable kernels.

Workarounds

  • No vendor-supplied workaround replaces the patch; the only remediation is updating to a kernel containing the fix commits.
  • Avoid running pre-release 7.0-rc kernels on production systems exposed to untrusted DMA-capable devices.
  • Where pre-release kernels are required, limit attached PCIe and assigned devices to trusted hardware until the fix is merged into the deployed build.
bash
# Verify the running kernel and confirm the fix commits are present
uname -r
git -C /usr/src/linux log --oneline | grep -E '50ecd96a28f7|ee6e69d03255'

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit Reference

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

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

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

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