A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-23467

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

CVE-2026-23467 is a use-after-free flaw in the Linux kernel's drm/i915/dmc component that can cause a NULL pointer dereference at probe. This article covers the technical details, affected systems, and mitigation strategies.

Published: April 10, 2026

CVE-2026-23467 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's Intel i915 graphics driver, specifically within the Display Microcontroller (DMC) subsystem. The vulnerability occurs in the intel_dmc_update_dc6_allowed_count() function when the DMC hasn't been initialized, causing the dmc pointer to be NULL.

The issue manifests during the display core initialization sequence when intel_power_domains_init_hw() is called before intel_dmc_init(). This creates a race condition where the DC6 power state tracking function may be invoked before the necessary DMC structures are allocated and initialized.

Critical Impact

Systems with Intel integrated graphics may experience kernel oops (crashes) during boot if the BIOS leaves an unintentionally enabled DC6 hardware state without loading the required DMC firmware.

Affected Products

  • Linux Kernel (drm/i915 driver)
  • Systems with Intel integrated graphics supporting DC6 power states
  • Platforms where BIOS may leave DC6 hardware state enabled at boot

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-23467 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23467

Vulnerability Analysis

This vulnerability is a Null Pointer Dereference in the Linux kernel's Intel i915 graphics driver. The root cause lies in the initialization order of the display power domains and the DMC subsystem.

The problematic call path follows this sequence: intel_power_domains_init_hw() → {skl,bxt,icl}_display_core_init() → gen9_set_dc_state() → intel_dmc_update_dc6_allowed_count(). Since intel_power_domains_init_hw() is invoked before intel_dmc_init(), the DMC pointer remains NULL when intel_dmc_update_dc6_allowed_count() attempts to access it.

The vulnerability is triggered conditionally based on the current and target DC states. At probe time, while the target DC state is disabled, if DC6 is already enabled in hardware, the function call proceeds and results in a kernel oops.

Root Cause

The vulnerability stems from an incorrect reliance on the hardware DC6 state rather than the software DC6 state for DC6 allowed counter tracking. The DC6 allowed counter functionality requires capturing the DC5 counter when starting the counter, which only works correctly when tracking is based on the software DC6 state.

The BIOS may leave an unintentionally enabled DC6 hardware state without actually loading the required DMC firmware. This represents a poorly specified sequence between BIOS firmware loading and driver initialization, making it an unexpected but possible boot configuration.

Attack Vector

While this vulnerability is unlikely to be exploited for malicious purposes, it represents a denial of service risk that could be triggered by specific hardware configurations or BIOS behaviors:

  1. System boots with a BIOS that leaves DC6 hardware state enabled
  2. The i915 driver begins initialization
  3. intel_power_domains_init_hw() is called before intel_dmc_init()
  4. gen9_set_dc_state() checks the hardware DC6 state and finds it enabled
  5. intel_dmc_update_dc6_allowed_count() is called with a NULL dmc pointer
  6. Kernel oops occurs, potentially causing system instability or crash

The fix addresses this by using the software DC6 state instead of the hardware state for tracking, which also ensures the dmc pointer is properly initialized before being accessed.

Detection Methods for CVE-2026-23467

Indicators of Compromise

  • Kernel oops messages referencing intel_dmc_update_dc6_allowed_count in system logs
  • System crashes or hangs during boot on systems with Intel integrated graphics
  • Kernel panic traces involving the drm/i915/dmc module during initialization
  • Error messages related to DC6 power state transitions in dmesg output

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors in the i915 driver subsystem
  • Review dmesg output for DMC initialization failures or DC state transition errors
  • Implement kernel tracing on intel_dmc_update_dc6_allowed_count function calls
  • Check for unexpected DC6 hardware state enablement before DMC initialization

Monitoring Recommendations

  • Configure kernel log monitoring to alert on oops or panic events related to the i915 driver
  • Implement automated boot testing on affected hardware configurations
  • Monitor system stability metrics on systems with Intel integrated graphics
  • Track kernel version deployments to ensure patched versions are deployed across the fleet

How to Mitigate CVE-2026-23467

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix (commit 2344b93af8eb5da5d496b4e0529d35f0f559eaf0)
  • Review BIOS settings related to display power management on affected systems
  • Monitor system boot processes for any instability related to the i915 driver
  • Consider disabling DC6 power states in kernel parameters as a temporary workaround

Patch Information

The fix has been committed to the stable kernel tree and changes the DC6 tracking logic to use the software DC6 state instead of the hardware state. This ensures the dmc pointer is properly initialized before being accessed and also corrects the DC6 allowed counter tracking functionality.

The patch is available through the following kernel git commits:

  • Kernel Git Commit 0b35d11
  • Kernel Git Commit 6313178
  • Kernel Git Commit ac57eb3

Workarounds

  • Disable DC6 power state via kernel boot parameter: i915.enable_dc=0 or i915.enable_dc=1 (DC5 only)
  • Update BIOS firmware to ensure proper DC state initialization before OS boot
  • For systems experiencing boot crashes, boot with nomodeset temporarily until kernel is updated
  • Consider using an older known-good kernel version while waiting for patched version deployment
bash
# Temporary workaround: Disable DC6 power states via GRUB
# Edit /etc/default/grub and add to GRUB_CMDLINE_LINUX_DEFAULT:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.enable_dc=1"

# Update GRUB configuration
sudo update-grub

# Reboot to apply changes
sudo reboot

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 Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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