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

CVE-2026-43280: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43280 is a buffer overflow in the Linux kernel drm/xe driver that allows malicious users to trigger out-of-bounds kernel reads. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43280 Overview

CVE-2026-43280 is an out-of-bounds read vulnerability in the Linux kernel's drm/xe graphics driver. The flaw resides in the madvise IOCTL handler, where the xe_pat_index_get_coh_mode() function accesses the xe->pat.table array without validating bounds. A local user can supply a crafted pat_index value to read kernel memory beyond the intended array.

The issue exists because madvise_args_are_sane() invokes xe_pat_index_get_coh_mode(xe, args->pat_index.val) before verifying that pat_index falls within [0, xe->pat.n_entries). The existing WARN_ON check fires only in debug builds and does not prevent the unsafe array read in production kernels.

Critical Impact

Local users with access to the Xe DRM device can trigger an out-of-bounds kernel read, potentially leaking sensitive kernel memory contents.

Affected Products

  • Linux kernel versions containing the drm/xe driver with the madvise IOCTL
  • Systems using Intel Xe graphics with the upstream xe DRM kernel driver
  • Stable kernel branches prior to the fix commits 79f5265556, fbbe32618e, and ffba51100f

Discovery Timeline

  • 2026-05-06 - CVE CVE-2026-43280 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43280

Vulnerability Analysis

The vulnerability is an out-of-bounds read [CWE-125] in the Intel Xe Direct Rendering Manager (DRM) driver. The madvise IOCTL accepts a pat_index value from userspace that selects an entry in the Page Attribute Table (PAT). The kernel uses this index to look up the coherency mode for the requested memory advice operation.

The sanity check function madvise_args_are_sane() calls xe_pat_index_get_coh_mode() directly with the user-supplied index. The lookup function indexes into xe->pat.table without first comparing the value against xe->pat.n_entries. As a result, an arbitrary attacker-controlled index dereferences memory adjacent to or far beyond the legitimate PAT table.

The upstream fix introduces an explicit bounds check before the array access. It also applies array_index_nospec() to mitigate Spectre-v1 speculative execution side channels when the index is later consumed.

Root Cause

The root cause is missing input validation on a user-controlled array index. The WARN_ON macro inside xe_pat_index_get_coh_mode() was relied on as an implicit sanity check, but WARN_ON only logs a warning and does not abort the unsafe access. In non-debug production kernels, the warning is ineffective and the out-of-bounds read proceeds.

Attack Vector

A local attacker with permission to open the Xe DRM device node, typically /dev/dri/cardN, issues a madvise IOCTL with a pat_index value larger than n_entries or a negative integer. The kernel reads memory at an attacker-influenced offset from the PAT table base. While the read result is not directly returned to userspace, the value influences the coherency mode decision, which can be observed through subsequent buffer behavior. Speculative execution paths also expose the read value to Spectre-style cache side-channel attacks.

No verified public exploit code is available. The vulnerability mechanism is documented in the upstream kernel commits referenced below.

Detection Methods for CVE-2026-43280

Indicators of Compromise

  • Kernel log entries containing WARN_ON traces from xe_pat_index_get_coh_mode on debug-enabled kernels
  • Unexpected madvise IOCTL calls against /dev/dri/card* or /dev/dri/renderD* from non-graphics processes
  • Repeated DRM_IOCTL_XE_VM_BIND or madvise calls with large or unusual pat_index values

Detection Strategies

  • Audit kernel ring buffer (dmesg) for warnings originating in drivers/gpu/drm/xe/xe_pat.c
  • Monitor process behavior for non-graphics workloads issuing DRM IOCTLs against the Xe device
  • Compare running kernel version against the fixed commits 79f5265556, fbbe32618e, and ffba51100f

Monitoring Recommendations

  • Enable Linux audit rules covering ioctl syscalls on /dev/dri/* device nodes
  • Track kernel version inventory across hosts using Intel Xe-class GPUs and flag unpatched systems
  • Forward kernel logs to a centralized logging system to correlate DRM warnings with user activity

How to Mitigate CVE-2026-43280

Immediate Actions Required

  • Apply the upstream stable kernel update containing commits 79f52655567a, fbbe32618e97, and ffba51100ff6
  • Inventory all systems running the xe DRM driver, including workstations and servers using Intel Xe or Arc GPUs
  • Restrict access to /dev/dri/* device nodes to trusted users and graphics-aware service accounts

Patch Information

The fix is published as a cherry-pick of upstream commit 944a3329b05510d55c69c2ef455136e2fc02de29. It adds a bounds check on pat_index against xe->pat.n_entries before any array access and uses array_index_nospec() to harden against Spectre-v1. Refer to the Kernel Git Commit Fix, Kernel Git Commit Update, and Kernel Git Commit Improvement for the patched code.

Workarounds

  • Tighten permissions on /dev/dri/renderD* and /dev/dri/card* so only the video or render group can open them
  • Unload the xe kernel module on systems that do not require Intel Xe graphics acceleration
  • Use Linux Security Modules such as SELinux or AppArmor to restrict which processes may issue DRM IOCTLs
bash
# Verify kernel version and check for the xe module
uname -r
lsmod | grep ^xe

# Restrict access to DRM render nodes to the render group
chgrp render /dev/dri/renderD*
chmod 0660 /dev/dri/renderD*

# Unload the xe driver if not required
sudo modprobe -r xe

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

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Update

  • Kernel Git Commit Improvement
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

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

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

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