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

CVE-2026-43337: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43337 is a buffer overflow vulnerability in the Linux Kernel affecting the AMD display driver, which can cause NULL pointer dereference. This article covers technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43337 Overview

CVE-2026-43337 is a NULL pointer dereference vulnerability in the Linux kernel's AMD Display Core Next (DCN) driver. The flaw resides in the dcn401_init_hw() function within drm/amd/display, where the code assumes the update_bw_bounding_box() callback is valid when entering the update path. The existing conditional check does not enforce this assumption because the freq_changed branch can evaluate to true independently of the callback pointer. A local attacker with low privileges can trigger the dereference, resulting in a kernel crash and denial of service [CWE-476].

Critical Impact

A local user can trigger a kernel NULL pointer dereference in the AMD display driver, causing a system-wide denial of service on affected Linux systems.

Affected Products

  • Linux kernel 6.12
  • Linux kernel 7.0 release candidates (rc1 through rc6)
  • Systems using the drm/amd/display driver with DCN 4.01 hardware

Discovery Timeline

  • 2026-05-08 - CVE-2026-43337 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43337

Vulnerability Analysis

The vulnerability exists in dcn401_init_hw() at drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c:367. The function evaluates the condition ((!fams2_enable && update_bw_bounding_box) || freq_changed) before invoking the update_bw_bounding_box() callback. Because the operator precedence allows the freq_changed branch to short-circuit to true, the code path executes even when the update_bw_bounding_box function pointer is NULL. The subsequent indirect call dereferences a NULL pointer in kernel context, triggering an oops and halting the affected CPU or the entire system depending on kernel configuration.

Root Cause

The root cause is a logic error in the conditional guarding an indirect function call. The check conflates two independent decisions: whether to perform the update and whether the callback is safe to invoke. The fix separates the update condition from the pointer validity check and explicitly validates dc->res_pool->funcs->update_bw_bounding_box, dc->clk_mgr, and bw_params before use. The patch was backported from upstream commit 86117c5ab42f21562fedb0a64bffea3ee5fcd477.

Attack Vector

Exploitation requires local access with low privileges on a system using AMD graphics hardware supported by the DCN 4.01 hardware sequencer. An attacker triggers the vulnerable code path by causing a display frequency change event under conditions where the update_bw_bounding_box callback pointer is NULL. The result is a kernel-level NULL pointer dereference. The vulnerability does not expose confidentiality or integrity, but high availability impact is achievable through repeated denial of service. No public proof-of-concept or in-the-wild exploitation has been reported.

No verified public exploit code is available. See the upstream patch references for technical details on the corrected control flow.

Detection Methods for CVE-2026-43337

Indicators of Compromise

  • Kernel oops messages referencing dcn401_init_hw or update_bw_bounding_box in dmesg or /var/log/kern.log
  • Unexpected display subsystem crashes or GPU resets correlated with display mode changes
  • System reboots or hangs occurring during graphics initialization or frequency transitions

Detection Strategies

  • Audit running kernel versions across the fleet and flag hosts running Linux 6.12 or 7.0-rc1 through 7.0-rc6 with AMD GPUs
  • Monitor kernel logs for null pointer dereference panics in the amdgpu and drm subsystems
  • Correlate user session activity with kernel crash events to identify potential local exploitation attempts

Monitoring Recommendations

  • Forward kern.log and journalctl -k output to a centralized log platform for analysis of kernel panics
  • Track package and kernel version inventory continuously to identify unpatched hosts
  • Alert on repeated graphics driver failures from the same local user account, which may indicate exploitation attempts

How to Mitigate CVE-2026-43337

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced by commits 10c13c111d0d, 2d4a6f0702c5, and e927b36ae18b from git.kernel.org
  • Update to a distribution kernel that includes the backport of upstream commit 86117c5ab42f21562fedb0a64bffea3ee5fcd477
  • Restrict local access to systems with affected AMD graphics hardware until patches are applied

Patch Information

The fix separates the update condition from the pointer validity check and ensures the callback, dc->clk_mgr, and bw_params are validated before use. Patches are available from the kernel stable tree at the Kernel Git Commit Update 1, Kernel Git Commit Update 2, and Kernel Git Commit Update 3.

Workarounds

  • Limit local logon rights on affected hosts to trusted administrators only
  • Avoid loading the amdgpu driver on systems that do not require display output, such as headless servers
  • Apply distribution security updates as soon as vendor-backported fixes are released
bash
# Verify the running kernel version and check for the fix
uname -r
apt list --installed 2>/dev/null | grep linux-image
# On RHEL/Fedora
rpm -q kernel

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • 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
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3
  • Related CVEs
  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43341: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43350: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43356: Linux Kernel Buffer Overflow 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