Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-31461

CVE-2026-31461: Linux Kernel Information Disclosure

CVE-2026-31461 is an information disclosure flaw in the Linux kernel's AMD display driver that causes memory leaks when display sinks reconnect. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-31461 Overview

A memory leak vulnerability has been identified in the Linux kernel's AMD display driver (amdgpu_dm). The issue occurs when a display sink is connected and the aconnector->drm_edid pointer is overwritten without properly freeing the previous memory allocation. This results in a memory leak during system resume operations, potentially leading to resource exhaustion over time.

Critical Impact

Repeated resume cycles on systems with AMD graphics can cause progressive memory exhaustion due to leaked EDID data allocations, potentially degrading system stability and performance.

Affected Products

  • Linux kernel with AMD GPU display driver (drm/amd/display)
  • Systems utilizing amdgpu_dm display manager component
  • AMD Radeon graphics hardware running affected kernel versions

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31461 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31461

Vulnerability Analysis

This vulnerability is classified as a Memory Leak within the Linux kernel's AMD display subsystem. The amdgpu_dm (AMDGPU Display Manager) component is responsible for managing display connections and handling EDID (Extended Display Identification Data) information for connected monitors and displays.

When a sink (display device) is connected to the system, the driver retrieves and stores the EDID information in the aconnector->drm_edid structure. The vulnerability manifests during system resume operations where this pointer is overwritten with new data without first releasing the previously allocated memory. Each resume cycle that encounters a connected display will allocate new memory for the EDID data while orphaning the previous allocation, creating a cumulative memory leak.

Root Cause

The root cause lies in improper memory management within the AMD display driver's sink connection handling code. Specifically, when updating the drm_edid field of the aconnector structure, the code failed to call the appropriate memory deallocation function on the existing allocation before assigning a new pointer value. This oversight results in the previous memory block becoming unreachable and unrecoverable by the system.

The fix involves adding a proper free operation for the previous drm_edid allocation before updating it with the new value, ensuring proper memory lifecycle management.

Attack Vector

This vulnerability is primarily a reliability and availability concern rather than a direct security exploit vector. The memory leak occurs through normal system operations (display connection during resume) and does not require attacker interaction. However, in scenarios where an attacker has local access, they could potentially trigger repeated suspend/resume cycles to accelerate memory exhaustion, leading to denial of service conditions.

The vulnerability affects systems with AMD graphics hardware running vulnerable kernel versions. Systems that frequently suspend and resume (such as laptops) are more susceptible to experiencing the cumulative effects of this memory leak.

Detection Methods for CVE-2026-31461

Indicators of Compromise

  • Gradual increase in kernel memory usage (/proc/meminfo showing declining MemFree after multiple resume cycles)
  • Memory allocation errors in kernel logs related to DRM or AMD display subsystem
  • System slowdown or instability after extended periods of suspend/resume operations
  • Kernel memory leak detection tools (kmemleak) reporting unreferenced objects in drm_edid allocations

Detection Strategies

  • Monitor kernel logs (dmesg) for memory allocation failures or warnings from the drm/amd/display subsystem
  • Implement kernel memory leak detection using CONFIG_DEBUG_KMEMLEAK during testing phases
  • Track memory consumption patterns before and after suspend/resume cycles on systems with AMD graphics
  • Use memory profiling tools to identify orphaned allocations in the display driver context

Monitoring Recommendations

  • Enable kernel memory debugging features in development and testing environments
  • Configure alerts for abnormal memory consumption trends on systems running AMD display drivers
  • Implement automated testing of suspend/resume cycles with memory tracking enabled
  • Review system memory statistics after resume operations to detect potential leak patterns

How to Mitigate CVE-2026-31461

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix (commit 52024a94e7111366141cfc5d888b2ef011f879e5)
  • Apply stable kernel patches from the provided kernel.org commits
  • Schedule system reboots for affected systems to reclaim leaked memory until patches can be applied
  • Minimize suspend/resume cycles on production systems with AMD graphics until patched

Patch Information

The fix has been backported to stable kernel branches and is available through the following commits:

  • Kernel Git Commit 37c2caa
  • Kernel Git Commit 52db857
  • Kernel Git Commit eb95595

The fix ensures that the previous drm_edid allocation is properly freed before updating it with a new value, eliminating the memory leak on resume operations.

Workarounds

  • Avoid suspend/resume operations on systems with AMD graphics hardware until the patch is applied
  • Schedule periodic system reboots to reclaim leaked memory on systems where patching is delayed
  • Monitor memory usage and reboot proactively when memory consumption reaches concerning thresholds
  • Consider disabling suspend functionality temporarily on critical systems if feasible
bash
# Check current kernel version
uname -r

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

# Apply kernel updates (Debian/Ubuntu)
sudo apt update && sudo apt upgrade linux-image-$(uname -r | cut -d- -f1-2)

# Verify applied patches by checking loaded module version
modinfo amdgpu | grep -i version

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 37c2caa

  • Kernel Git Commit 52db857

  • Kernel Git Commit eb95595
  • Related CVEs
  • CVE-2026-23418: Linux Kernel Information Disclosure Flaw

  • CVE-2025-59105: Flash Memory Information Disclosure Flaw

  • CVE-2024-50302: Android HID Core Information Disclosure

  • CVE-2024-0564: Linux Kernel Information Disclosure Flaw
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