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

CVE-2026-43444: Linux Kernel Privilege Escalation Flaw

CVE-2026-43444 is a privilege escalation vulnerability in the Linux kernel's AMD KFD driver affecting buffer object reservation handling. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43444 Overview

CVE-2026-43444 is a Linux kernel vulnerability in the AMD Kernel Fusion Driver (amdkfd) Direct Rendering Manager (DRM) subsystem. The flaw exists in the queue update error handling path, where a buffer object (bo) remains reserved when a queue update operation fails. The fix ensures the buffer object is properly unreserved before returning the failure status. This resource management issue was resolved through a series of stable kernel commits cherry-picked from commit c24afed7de9ecce341825d8ab55a43a254348b33.

Critical Impact

Failure to unreserve a buffer object on the error path can lead to resource leaks, potential deadlocks in the GPU memory management subsystem, and degraded system stability on Linux systems using AMD GPU compute features.

Affected Products

  • Linux kernel versions containing the amdkfd driver prior to the patch
  • Systems using AMD GPU compute (KFD) functionality
  • Linux distributions shipping affected stable kernel versions

Discovery Timeline

  • 2026-05-08 - CVE-2026-43444 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43444

Vulnerability Analysis

The vulnerability resides in the AMD Kernel Fusion Driver (amdkfd), which provides compute queue management for AMD GPUs under the Direct Rendering Manager (DRM) subsystem. When a queue update operation fails, the original error handling path returned the failure code without releasing the reservation on the associated buffer object. Buffer object reservations in the Translation Table Maps (TTM) memory manager use locks to serialize access to GPU memory resources. Leaving a buffer object reserved after an error condition causes the resource to remain locked from subsequent operations.

This class of issue is categorized as improper resource cleanup on error paths, which can manifest as a resource leak or contribute to deadlock scenarios in concurrent kernel execution contexts.

Root Cause

The root cause is missing cleanup logic in the queue update error handling path within the amdkfd driver. The function reserves a buffer object before attempting the queue update but does not call the corresponding unreserve routine when the update operation fails. The patch reorders the error handling to unreserve the buffer object before returning the failure status, restoring symmetric resource management.

Attack Vector

This vulnerability requires local access to a system with AMD GPU compute functionality enabled. Triggering the condition depends on inducing a queue update failure in the amdkfd driver, which occurs in kernel-mode GPU compute workflows. The EPSS score is 0.023% with a percentile of 6.694, indicating low likelihood of weaponized exploitation. The primary risk is system stability rather than direct privilege escalation or code execution.

No verified public proof-of-concept code is available. The vulnerability mechanism and remediation are documented in the upstream kernel commits referenced below. See Linux Kernel Commit 2ce75a0 and Linux Kernel Commit b2b7742 for the upstream fixes.

Detection Methods for CVE-2026-43444

Indicators of Compromise

  • Kernel log messages indicating queue update failures in the amdkfd driver subsystem
  • Hung tasks or processes blocked on GPU memory operations involving AMD KFD compute queues
  • Increased dmesg warnings related to buffer object reservation or TTM memory manager contention

Detection Strategies

  • Audit kernel versions across Linux fleets to identify hosts running unpatched amdkfd driver code
  • Monitor /proc/kmsg and journalctl -k for repeated DRM or KFD error messages following GPU compute workloads
  • Correlate AMD GPU compute workload failures with kernel stack traces referencing amdkfd queue management functions

Monitoring Recommendations

  • Enable kernel taint and lockup detection (hung_task_timeout_secs) to surface deadlocks tied to buffer object contention
  • Track kernel package versions through configuration management tooling and flag systems below patched baselines
  • Collect kernel telemetry from endpoints running GPU compute workloads to identify abnormal failure patterns

How to Mitigate CVE-2026-43444

Immediate Actions Required

  • Identify all Linux systems running AMD GPUs with the amdkfd driver loaded and inventory their kernel versions
  • Apply the latest stable kernel update from your Linux distribution that includes the upstream fix
  • Reboot affected systems after kernel upgrade to load the patched amdkfd driver

Patch Information

The fix is available in upstream stable kernel commits: Linux Kernel Commit 2ce75a0, Linux Kernel Commit 529c985, Linux Kernel Commit 7811107, and Linux Kernel Commit b2b7742. The patch was cherry-picked from upstream commit c24afed7de9ecce341825d8ab55a43a254348b33. Apply distribution-provided kernel packages that incorporate these commits.

Workarounds

  • Unload the amdkfd kernel module on systems that do not require AMD GPU compute functionality using modprobe -r amdkfd
  • Restrict access to GPU compute interfaces by limiting which user accounts can submit workloads to AMD KFD devices
  • Avoid running unstable or third-party GPU compute workloads on affected hosts until the patched kernel is deployed
bash
# Verify current kernel version and amdkfd module status
uname -r
lsmod | grep amdkfd

# Check available kernel updates (Debian/Ubuntu)
apt list --upgradable | grep linux-image

# Check available kernel updates (RHEL/Fedora)
dnf check-update kernel

# Temporary mitigation: unload amdkfd if not required
sudo modprobe -r amdkfd

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 2ce75a0

  • Linux Kernel Commit 529c985

  • Linux Kernel Commit 7811107

  • Linux Kernel Commit b2b7742
  • Related CVEs
  • CVE-2026-46228: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46225: Linux Kernel RSPI Privilege Escalation

  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw
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