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

CVE-2026-46229: Linux Kernel Information Disclosure Flaw

CVE-2026-46229 is an information disclosure vulnerability in the Linux kernel's AMD KFD driver that exposes stale VRAM data to compute kernels. This article covers the technical details, affected systems, and mitigation strategies.

Published: May 28, 2026

CVE-2026-46229 Overview

CVE-2026-46229 is an information disclosure vulnerability in the Linux kernel's AMD Kernel Fusion Driver (drm/amdkfd). The Kernel Fusion Driver (KFD) Video RAM (VRAM) allocation path sets AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE but fails to set AMDGPU_GEM_CREATE_VRAM_CLEARED. As a result, newly allocated VRAM buffers retain stale data from prior use, which compute kernels can read. The Graphics Execution Manager (GEM) ioctl path already clears VRAM through amdgpu_gem_create_ioctl() and amdgpu_mode_dumb_create(), but the KFD path was missing this protection. The flaw allows stale page table remnants to leak into userspace buffers and also corrupts the RCCL P2P transport handshake by leaving non-zero values in ptrExchange, head, and tail fields.

Critical Impact

Compute kernels running on AMD GPUs can read residual data from previously freed VRAM regions, including kernel page table remnants, leading to information disclosure across workloads.

Affected Products

  • Linux kernel builds that include the drm/amdkfd driver
  • Systems using AMD GPUs with the Kernel Fusion Driver for compute workloads
  • Multi-tenant or shared GPU environments leveraging RCCL peer-to-peer transport

Discovery Timeline

  • 2026-05-28 - CVE-2026-46229 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46229

Vulnerability Analysis

The AMD Kernel Fusion Driver exposes GPU compute capabilities to userspace through a dedicated allocation path separate from the GEM ioctl interface. When KFD allocates VRAM, it requests wipe-on-release semantics via AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE but omits AMDGPU_GEM_CREATE_VRAM_CLEARED. Wipe-on-release only zeroes memory when buffers are freed, not when they are allocated. Allocations therefore inherit whatever bytes the underlying VRAM pages last contained, including remnants of prior kernel page tables and other process data. Compute kernels reading these buffers observe residual content that should never cross trust boundaries.

Root Cause

The root cause is a missing buffer object creation flag on the KFD allocation path. The GEM ioctl-based userspace allocators set AMDGPU_GEM_CREATE_VRAM_CLEARED to force the driver to zero VRAM at allocation time. The KFD path constructs amdgpu_bo objects without that flag, so the Translation Table Manager (TTM) skips the clearing step. The result is uninitialized memory exposure [CWE-908] combined with information disclosure across workload boundaries.

Attack Vector

A local user with permission to submit compute work to an AMD GPU through KFD can allocate VRAM buffers and read their contents before writing to them. The buffers may contain stale GPU page table entries, prior tenant data, or fragments of other compute workloads. In RCCL P2P transport scenarios, non-zero residual data in ptrExchange, head, and tail fields corrupts the handshake and produces crashes, which can also serve as a reliability signal during exploitation.

No verified public exploit code is available. The vulnerability mechanism is documented in the upstream commits referenced below. See the Kernel Patch 047d44d and Kernel Patch 1db4313 for the corrective code.

Detection Methods for CVE-2026-46229

Indicators of Compromise

  • Unexplained crashes in RCCL P2P transport with corrupted handshake fields (ptrExchange, head, tail)
  • Compute workloads observing non-zero initial values in freshly allocated VRAM buffers
  • Anomalous data patterns in GPU buffers that match prior workload signatures on shared hosts

Detection Strategies

  • Audit running kernel versions across GPU-enabled hosts and compare against patched stable kernel releases referenced in the upstream fix
  • Instrument compute applications to checksum freshly allocated VRAM before first write and flag non-zero results
  • Review RCCL and HIP application logs for unexpected handshake failures or transport-layer crashes that correlate with the flaw

Monitoring Recommendations

  • Track dmesg output for amdgpu and amdkfd warnings on multi-tenant GPU hosts
  • Monitor user processes that open /dev/kfd and allocate large VRAM buffers without prior writes
  • Centralize kernel version inventory and patch-state telemetry for AI and high-performance compute clusters

How to Mitigate CVE-2026-46229

Immediate Actions Required

  • Apply the upstream stable kernel patches that add AMDGPU_GEM_CREATE_VRAM_CLEARED to the KFD allocation path
  • Update distribution kernels on all hosts running AMD GPU compute workloads as soon as vendor builds are available
  • Restrict access to /dev/kfd to trusted users until patched kernels are deployed

Patch Information

The Linux kernel maintainers committed fixes across multiple stable branches. Reference commits: Kernel Patch 047d44d, Kernel Patch 1db4313, Kernel Patch 32b1536, Kernel Patch 77d0b5d, and Kernel Patch ad52d61. Each patch adds the AMDGPU_GEM_CREATE_VRAM_CLEARED flag to the KFD buffer object creation path.

Workarounds

  • Avoid sharing AMD GPU compute hosts across mutually untrusted tenants until the kernel is patched
  • Require compute workloads to explicitly zero VRAM buffers immediately after allocation as a defense-in-depth measure
  • Disable KFD compute access on hosts that do not require it by restricting permissions on /dev/kfd
bash
# Verify running kernel and check for the fixed amdkfd allocation flag
uname -r
modinfo amdgpu | grep -i version
# Restrict KFD device access to a trusted group until patched
sudo chgrp gpu-compute /dev/kfd
sudo chmod 0660 /dev/kfd

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 047d44d

  • Kernel Patch 1db4313

  • Kernel Patch 32b1536

  • Kernel Patch 77d0b5d

  • Kernel Patch ad52d61
  • Related CVEs
  • CVE-2026-43336: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43317: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43377: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43393: Linux Kernel Information Disclosure Bug
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