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

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

CVE-2026-31540 is a use-after-free vulnerability in Linux Kernel's drm/i915/gt driver that causes NULL pointer dereference during suspend. This article covers technical details, affected versions, impact, and mitigation.

Published: April 30, 2026

CVE-2026-31540 Overview

CVE-2026-31540 is a Null Pointer Dereference vulnerability in the Linux kernel's Intel i915 graphics driver. The vulnerability exists in the drm/i915/gt subsystem where the set_default_submission() function pointer is dereferenced without first verifying it has been properly initialized. This condition occurs when the i915 driver firmware binaries are not present on the system, leaving the pointer unset while still being called during system suspend operations.

Critical Impact

Systems with Intel integrated graphics running affected kernel versions may experience kernel panics and system crashes during suspend/resume cycles when the i915 firmware is missing, leading to denial of service conditions.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 7.0 release candidates (rc1 through rc4)
  • Systems utilizing Intel i915 integrated graphics drivers

Discovery Timeline

  • April 24, 2026 - CVE-2026-31540 published to NVD
  • April 28, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31540

Vulnerability Analysis

This vulnerability stems from a missing null pointer check in the Intel i915 graphics driver's submission handling code. During the system suspend sequence, the kernel invokes intel_engines_reset_default_submission() which iterates through graphics engines and calls their set_default_submission function pointers. When the i915 firmware binaries are absent from the system, this function pointer is never initialized but is still dereferenced, resulting in a kernel NULL pointer dereference.

The crash occurs specifically in the gt_sanitize() function path during late suspend operations. The kernel stack trace shows the vulnerability is triggered through the following call chain: i915_drm_suspend_late → i915_gem_suspend_late → intel_gt_unset_wedged → __intel_gt_unset_wedged → intel_engines_reset_default_submission. The RIP register shows 0x0, confirming the null pointer dereference when attempting to execute code at address zero.

Root Cause

The root cause is an improper validation issue (CWE-476: NULL Pointer Dereference) in the i915 driver code. The set_default_submission function pointer is conditionally initialized based on firmware availability, but the code that dereferences this pointer during suspend operations does not check whether initialization occurred. This creates a code path where a null function pointer can be invoked, causing an immediate kernel panic.

Attack Vector

This vulnerability requires local access to the system and is triggered under specific conditions:

  1. The system must have Intel integrated graphics using the i915 driver
  2. The i915 firmware binaries must be missing from the system (typically in /lib/firmware/i915/)
  3. The system must enter a suspend state (PM suspend entry)

While this is not remotely exploitable, a local attacker with limited privileges could potentially trigger the vulnerability by initiating a system suspend, causing a denial of service condition. The vulnerability is particularly concerning for systems where firmware packages are incomplete or corrupted, as routine power management operations would cause system instability.

The kernel oops message clearly indicates the issue:

BUG: kernel NULL pointer dereference, address: 0000000000000000
RIP: 0010:0x0
Call Trace:
intel_engines_reset_default_submission+0x42/0x60
__intel_gt_unset_wedged+0x191/0x200
intel_gt_unset_wedged+0x20/0x40
gt_sanitize+0x15e/0x170
i915_gem_suspend_late+0x6b/0x180

Detection Methods for CVE-2026-31540

Indicators of Compromise

  • Kernel oops messages containing BUG: kernel NULL pointer dereference during suspend operations
  • Stack traces referencing intel_engines_reset_default_submission in kernel logs
  • System crashes or unresponsive states when entering sleep or suspend modes
  • Missing i915 firmware files in /lib/firmware/i915/ directory combined with Intel graphics hardware

Detection Strategies

  • Monitor kernel logs (dmesg or /var/log/kern.log) for NULL pointer dereference errors involving i915 driver components
  • Implement automated scanning for missing firmware packages using package management tools
  • Use SentinelOne's kernel-level monitoring to detect anomalous driver behavior and crash conditions
  • Deploy auditd rules to monitor suspend/resume events and correlate with system stability issues

Monitoring Recommendations

  • Configure system monitoring to alert on kernel oops events, particularly those involving the i915 driver subsystem
  • Establish baseline firmware package inventories and alert when critical firmware files are missing
  • Implement crash dump collection to capture kernel state during failures for forensic analysis
  • Monitor for repeated suspend/resume failures that may indicate exploitation attempts or vulnerable configurations

How to Mitigate CVE-2026-31540

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the null pointer check before dereferencing
  • Verify that i915 firmware binaries are properly installed on systems with Intel integrated graphics
  • Temporarily disable suspend functionality on affected systems if patching is not immediately possible
  • Review system logs for evidence of prior exploitation or crashes related to this vulnerability

Patch Information

Multiple patches have been released across stable kernel branches to address this vulnerability. The fix adds a conditional check to verify that set_default_submission is non-null before dereferencing:

  • Kernel Git Commit 0162ab3
  • Kernel Git Commit 1a16150
  • Kernel Git Commit 2e20a88
  • Kernel Git Commit cf4b224
  • Kernel Git Commit da6552d
  • Kernel Git Commit db8b1be
  • Kernel Git Commit df1f4a7

The patch was cherry-picked from commit daa199abc3d3d1740c9e3a2c3e9216ae5b447cad.

Workarounds

  • Install the missing i915 firmware packages (typically linux-firmware or distribution-specific firmware packages)
  • Disable system suspend/hibernate functionality by masking the systemd sleep targets: systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
  • Blacklist the i915 module if Intel graphics are not required: add blacklist i915 to /etc/modprobe.d/blacklist.conf
  • For systems requiring graphics but not suspend, consider using alternative graphics drivers if available
bash
# Install missing firmware (Debian/Ubuntu)
sudo apt update && sudo apt install firmware-misc-nonfree linux-firmware

# Verify i915 firmware presence
ls -la /lib/firmware/i915/

# Disable suspend as temporary workaround
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target

# Re-enable after patching
sudo systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

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

  • Kernel Git Commit 1a16150

  • Kernel Git Commit 2e20a88

  • Kernel Git Commit cf4b224

  • Kernel Git Commit da6552d

  • Kernel Git Commit db8b1be

  • Kernel Git Commit df1f4a7
  • Related CVEs
  • CVE-2026-31749: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43163: 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