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

CVE-2026-43320: Linux Kernel Display Driver Vulnerability

CVE-2026-43320 is a display driver flaw in the Linux Kernel AMD display component affecting DSC eDP functionality. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43320 Overview

CVE-2026-43320 affects the Linux kernel's AMD display driver (drm/amd/display) component. The vulnerability stems from a missing function hook check in the Display Stream Compression (DSC) code path used for embedded DisplayPort (eDP) panels. Without verifying that the function pointer is valid before invocation, the kernel can dereference an unpopulated hook and trigger a fault in display initialization or modeset operations.

The issue impacts Linux kernel version 6.12 and 7.0 release candidates rc1 through rc7. The fix adds a function hook check before use, as documented in the upstream commits.

Critical Impact

A local user with permission to interact with the AMD DRM subsystem can trigger a kernel fault, resulting in a denial-of-service condition on systems with affected GPUs and eDP panels.

Affected Products

  • Linux kernel 6.12
  • Linux kernel 7.0-rc1 through 7.0-rc7
  • Distributions shipping the drm/amd/display driver from these versions

Discovery Timeline

  • 2026-05-08 - CVE-2026-43320 published to the National Vulnerability Database (NVD)
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43320

Vulnerability Analysis

The vulnerability resides in the AMD Display Core (DC) subsystem of the Linux kernel, specifically in the code path handling DSC on eDP panels. The driver invokes a function through a hook pointer without first validating that the hook has been populated for the current hardware configuration.

When DSC is engaged for an eDP output on a configuration where the corresponding hook is not assigned, the call dereferences an invalid pointer. This produces a kernel oops and terminates the offending context, with potential impact on overall system availability depending on which kernel thread is affected.

The upstream commit message states the rationale concisely: "Need to add function hook check before use." The fix introduces a guard that verifies the hook is non-null prior to invocation. CWE classification is recorded as NVD-CWE-noinfo, though the defect pattern aligns with a null pointer dereference in a kernel driver.

Root Cause

The defect is a missing precondition check on a function pointer in the AMD drm display pipeline. The DSC eDP code path assumes a hook is always available for the active panel and codec combination. On hardware or configuration permutations where the hook is not registered, the call site dispatches into an invalid address.

Attack Vector

Exploitation requires local access with privileges sufficient to interact with the DRM subsystem, such as initiating modesets or display configuration changes that engage DSC on an eDP panel. Network attack vectors do not apply. Successful triggering yields an availability impact through a kernel crash, with no direct effect on confidentiality or integrity.

No public proof-of-concept exploit is currently published, and the issue is not listed in the CISA Known Exploited Vulnerabilities catalog. The EPSS score is 0.013%, indicating very low probability of observed exploitation activity.

The vulnerability mechanism centers on an unchecked function pointer dispatch within the DSC eDP code path. See the upstream commits referenced under Patch Information for the exact code change.

Detection Methods for CVE-2026-43320

Indicators of Compromise

  • Kernel oops or panic entries in dmesg referencing drm/amd/display or DSC function pointers on systems using eDP panels.
  • Unexpected display blackouts or session terminations correlated with modeset operations on AMD GPUs.
  • journalctl -k traces showing null pointer dereference at addresses within the amdgpu module during DSC configuration.

Detection Strategies

  • Inventory running kernel versions across the fleet and flag hosts on Linux 6.12 or any 7.0 release candidate from rc1 to rc7 with AMD GPUs.
  • Monitor kernel crash telemetry from kdump, systemd-coredump, or vendor crash reporters for stack traces involving the AMD display driver.
  • Correlate display subsystem faults with user sessions performing display reconfiguration on laptops with eDP panels.

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a centralized logging backend and alert on kernel oops events referencing amdgpu or dc_dsc.
  • Track package and kernel update compliance to ensure patched stable releases are deployed.
  • Watch for repeated DRM-related crashes on the same host as a signal of consistent local triggering.

How to Mitigate CVE-2026-43320

Immediate Actions Required

  • Update to a stable Linux kernel release containing one of the fix commits: 0481be9f, 11718976, 878a4b73, or c10fe947.
  • For systems unable to update immediately, restrict local access to untrusted users on machines with AMD GPUs and eDP panels.
  • Prioritize patching on laptops and workstations where eDP-attached panels are the primary display.

Patch Information

The fix has been merged in the upstream stable kernel tree. The relevant commits add a function hook check before the hook is invoked in the DSC eDP code path. References:

  • Kernel Git Commit 0481be9
  • Kernel Git Commit 11718976
  • Kernel Git Commit 878a4b7
  • Kernel Git Commit c10fe94

Apply the stable kernel update through your distribution's package manager once the patched kernel is available in the repository.

Workarounds

  • Disable DSC on affected eDP outputs where the option is exposed via kernel parameters or driver tunables, accepting reduced bandwidth efficiency on high-resolution panels.
  • Limit user accounts permitted to perform DRM modeset operations on affected hosts until the patched kernel is installed.
  • Where feasible, use an external DisplayPort or HDMI output instead of the eDP panel to avoid the affected code path.
bash
# Verify current kernel version and check for the patched release
uname -r

# Debian/Ubuntu: install the latest stable kernel
sudo apt update && sudo apt install --only-upgrade linux-image-generic

# Fedora/RHEL: update the kernel package
sudo dnf update kernel

# Reboot to apply the patched kernel
sudo systemctl reboot

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • 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
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 0481be9

  • Kernel Git Commit 11718976

  • Kernel Git Commit 878a4b7

  • Kernel Git Commit c10fe94
  • Related CVEs
  • CVE-2026-43493: Linux Kernel Crypto Pcrypt Vulnerability

  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort 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