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

CVE-2026-43400: Linux Kernel AMDGPU Driver DoS Flaw

CVE-2026-43400 is a denial of service vulnerability in the Linux kernel AMDGPU driver caused by unbounded user input values that can trigger out-of-memory conditions. This article covers technical details, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43400 Overview

CVE-2026-43400 is a Linux kernel vulnerability in the AMD GPU driver (drm/amdgpu). The amdgpu_userq_signal_ioctl function fails to validate upper bounds on user-supplied input values. Large input values trigger excessive kernel memory allocation, leading to an out-of-memory (OOM) condition. Local users with access to the AMD GPU device node can exploit this to exhaust kernel memory and cause denial of service. The upstream fix introduces validation against the AMDGPU_USERQ_MAX_HANDLES constant to constrain allocation sizes.

Critical Impact

Local attackers can trigger kernel OOM conditions through unbounded allocation in the amdgpu user queue signal IOCTL, resulting in denial of service on systems with AMD GPUs.

Affected Products

  • Linux kernel versions including the vulnerable amdgpu_userq_signal_ioctl implementation
  • Systems with AMD GPU hardware using the amdgpu Direct Rendering Manager (DRM) driver
  • Distributions shipping kernels prior to the backported fix commits

Discovery Timeline

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

Technical Details for CVE-2026-43400

Vulnerability Analysis

The vulnerability resides in the AMD GPU kernel driver's user queue subsystem. The amdgpu_userq_signal_ioctl handler processes user-supplied parameters that drive kernel memory allocation. Without an upper bound check, an attacker can pass arbitrarily large input values that cause the kernel to attempt allocations sized well beyond legitimate use cases.

The resulting allocation either fails outright or consumes enough memory to trigger the kernel OOM killer. Either outcome produces denial of service, with potential collateral termination of unrelated processes when the OOM killer activates. The patch adds a sanity check comparing the input against AMDGPU_USERQ_MAX_HANDLES, which the maintainers describe as sufficient for legitimate workloads.

Root Cause

The root cause is missing input validation [CWE-1284] in an IOCTL handler. The vulnerable code path trusts user-controlled count or size values and feeds them directly into allocation routines. This is a classic resource exhaustion pattern in kernel ioctl interfaces where untrusted userspace input drives kernel-side allocation without sanity bounds.

Attack Vector

Exploitation requires local access to the system and permission to open the /dev/dri/renderD* device node exposed by the amdgpu driver. On most desktop and workstation Linux distributions, members of the video or render group hold this access. An attacker invokes the user queue signal IOCTL with crafted oversized input values, triggering the unbounded allocation path. No special privileges beyond device access are required.

No verified public proof-of-concept exploit is currently available. Technical details are documented in the upstream kernel commits referenced in the Kernel Git Commit Fix.

Detection Methods for CVE-2026-43400

Indicators of Compromise

  • Kernel log entries showing OOM killer activation on systems with AMD GPUs and no corresponding legitimate memory pressure workload
  • Repeated process terminations by oom-killer correlated with non-privileged user activity
  • Unexpected amdgpu driver allocation failures or warnings in dmesg

Detection Strategies

  • Audit running kernel versions against the patched commits 46630d966b99, 6fff5204d8aa, and ea78f8c68f4f to identify unpatched hosts
  • Monitor /proc/meminfo and slab allocator metrics for abnormal kernel memory consumption tied to GPU driver activity
  • Correlate IOCTL syscall telemetry against /dev/dri/renderD* device descriptors to identify unusual access patterns from non-graphical processes

Monitoring Recommendations

  • Enable kernel auditing of IOCTL operations on DRM render nodes for high-value or multi-tenant hosts
  • Track OOM killer events through journalctl -k and forward to centralized logging for anomaly detection
  • Inventory hosts with AMD GPU hardware to scope exposure and prioritize patching across desktop, workstation, and GPU compute fleets

How to Mitigate CVE-2026-43400

Immediate Actions Required

  • Update affected Linux kernels to a version containing the upstream fix or the stable backports referenced in the kernel.org commits
  • Restrict access to /dev/dri/renderD* device nodes by removing untrusted users from the render and video groups
  • On multi-tenant or shared compute hosts, prioritize patching as local users may trigger denial of service against co-tenants

Patch Information

The fix adds an upper bound check against AMDGPU_USERQ_MAX_HANDLES in amdgpu_userq_signal_ioctl. Apply the upstream patches from the Kernel Git Commit Fix, Kernel Git Commit Update, and Kernel Git Commit Change. Distribution vendors will ship the fix through their standard stable kernel update channels.

Workarounds

  • Where the amdgpu driver is not required, blacklist the module to remove the attack surface entirely
  • Apply Linux control groups (cgroups v2) memory limits to user sessions to contain the blast radius of OOM conditions
  • Restrict device node permissions using udev rules so only trusted system users can open AMD GPU render nodes
bash
# Example udev rule restricting amdgpu render node access
# Place in /etc/udev/rules.d/99-amdgpu-restrict.rules
SUBSYSTEM=="drm", KERNEL=="renderD*", GROUP="render", MODE="0660"

# Verify installed kernel includes the fix commits
zgrep -i "amdgpu_userq_signal_ioctl" /proc/config.gz
uname -r

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

  • Vulnerability Details
  • TypeDOS

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

  • Kernel Git Commit Fix
  • Related CVEs
  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS 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