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

CVE-2026-46264: Linux Kernel Use-After-Free Vulnerability

CVE-2026-46264 is a use-after-free vulnerability in the Linux kernel's drm/xe/pf sysfs initialization that can cause kobject errors and reference count issues. This article covers technical details, impact, and mitigation.

Published: June 4, 2026

CVE-2026-46264 Overview

CVE-2026-46264 is a kernel vulnerability in the Linux drm/xe graphics driver affecting the SR-IOV Physical Function (PF) sysfs initialization path. The flaw originates in xe_sriov_pf_sysfs_init(), where devm_add_action_or_reset() registers a cleanup action against a kobject that has not yet been initialized. When registration fails, the cleanup runs immediately, triggering kobject_put() on an uninitialized object. The result is a refcount underflow and a use-after-free condition in kernel memory. The issue also produces undetected leaks because the cleanup action was registered against the wrong parent kobject inside the loop.

Critical Impact

A failed device probe path in the Intel Xe SR-IOV driver leads to kobject use-after-free and refcount underflow inside the kernel, producing warnings and potential memory corruption during PCI device initialization.

Affected Products

  • Linux kernel versions containing the drm/xe driver with SR-IOV PF support prior to commits 6ae479b1919e and bf7172cd25ed
  • Systems using Intel Xe graphics hardware with SR-IOV Physical Function enabled
  • Distributions shipping affected mainline and stable kernel branches

Discovery Timeline

  • 2026-06-03 - CVE-2026-46264 published to NVD
  • 2026-06-03 - Last updated in NVD database

Technical Details for CVE-2026-46264

Vulnerability Analysis

The defect resides in xe_sriov_pf_sysfs_init() within the Intel Xe Direct Rendering Manager (DRM) driver. The function calls devm_add_action_or_reset() to register a cleanup callback responsible for releasing a kobject. The kernel API contract for devm_add_action_or_reset() specifies that if action registration fails, the cleanup runs immediately to prevent resource leaks. In the affected code, the kobject passed to that cleanup has not yet been initialized through kobject_init(). Running kobject_put() on an uninitialized object triggers the kernel warning kobject: '(null)' ... is not initialized, yet kobject_put() is being called, followed by a refcount_t: underflow; use-after-free warning from refcount_warn_saturate().

Root Cause

The root cause is improper ordering of resource initialization and cleanup registration [CWE-416]. The cleanup handler was attached before kobject_init() and kobject_add() were invoked. A secondary defect compounds the issue: inside a loop, the cleanup action was registered against the parent kobject instead of the child kobject being created, leaving child objects without a proper release path and producing silent leaks.

Attack Vector

The condition is reached during PCI probe of an Intel Xe device with SR-IOV Physical Function support. Triggering the use-after-free requires that devm_add_action_or_reset() fail during xe_sriov_pf_init_late(), which in practice depends on kernel memory pressure or allocation failure during probe. The vector is local and tied to device initialization rather than remote input, so it is primarily a stability and kernel-integrity concern rather than a remote attack surface.

The fix splits the kobject lifecycle into explicit kobject_init() followed by kobject_add(), registers the cleanup action only after the kobject is initialized, and moves cleanup registration into the create helper so that each child kobject receives its own correctly scoped release handler. The corrected sequence is documented in the upstream commits 6ae479b1919e and bf7172cd25ed.

Detection Methods for CVE-2026-46264

Indicators of Compromise

  • Kernel log entries containing kobject: '(null)' ... is not initialized, yet kobject_put() is being called originating from the xe module
  • WARNING at lib/kobject.c:734 in kobject_put+0xd9/0x250 with a call trace through xe_sriov_pf_sysfs_init
  • refcount_t: underflow; use-after-free warnings from refcount_warn_saturate correlated with xe_sriov_pf_init_late and xe_pci_probe

Detection Strategies

  • Monitor dmesg and journalctl -k for the warning signatures above during boot and PCI hotplug events on hosts with Intel Xe SR-IOV hardware
  • Track kernel version inventory and flag hosts running drm/xe builds that do not include the upstream fix commits 6ae479b1919e or bf7172cd25ed
  • Correlate probe failures of the xe driver with subsequent kernel taints or unexpected reboots

Monitoring Recommendations

  • Forward kernel ring buffer logs to a centralized logging or SIEM platform and alert on refcount_warn_saturate and kobject_put warnings
  • Watch for repeated xe_pci_probe failures on virtualization hosts using Intel SR-IOV graphics
  • Include kernel package versions in configuration baselines and detect drift from patched releases

How to Mitigate CVE-2026-46264

Immediate Actions Required

  • Inventory hosts running the drm/xe driver with SR-IOV PF enabled and identify kernels lacking the upstream fix
  • Apply the upstream patches 6ae479b1919e and bf7172cd25ed or upgrade to a distribution kernel that incorporates them
  • Reboot affected systems after kernel upgrade to ensure the patched xe module is loaded

Patch Information

The upstream fix calls kobject_init() and kobject_add() separately and registers the devm cleanup action only after the kobject is initialized. The cleanup registration is moved into the create helper so that each child kobject is bound to its own release callback. Patches are available at the Kernel Git Commit 6ae479b1919e and Kernel Git Commit bf7172cd25ed.

Workarounds

  • Disable SR-IOV on Intel Xe devices until the patched kernel is deployed by ensuring sriov_numvfs is not set on affected PCI devices
  • Blacklist the xe module on systems that do not require Intel Xe graphics, using /etc/modprobe.d/ configuration
  • Avoid dynamic loading and unloading of the xe driver on production hosts running unpatched kernels

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit
  • Related CVEs
  • CVE-2026-46270: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46267: Linux Kernel NFC Use-After-Free Flaw

  • CVE-2026-46259: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46246: Linux Kernel Use-After-Free 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