The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-43079

CVE-2026-43079: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43079 is a buffer overflow vulnerability in the Linux kernel's Intel uncore performance monitoring subsystem that can cause array overflow issues. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43079 Overview

CVE-2026-43079 is a Linux kernel vulnerability in the Intel uncore performance monitoring subsystem (perf/x86/intel/uncore). The flaw resides in uncore_pci_pmu_register() within uncore.c, where the discovery table continues to be parsed even when all CPUs in the associated die are offline. This behavior can produce an array overflow at the pmu->boxes[die] = box assignment. The condition is triggered when Non-Uniform Memory Access (NUMA) is disabled and the system boots with fewer CPUs than the number of CPUs in die 0, generating a kernel WARNING and potentially causing additional instability.

Critical Impact

An out-of-bounds array write in the kernel's Intel uncore PMU registration path can trigger kernel warnings and lead to memory corruption on affected x86 systems with offline dies.

Affected Products

  • Linux kernel builds containing the Intel uncore PMU discovery table parsing logic in arch/x86/events/intel/uncore.c
  • x86 systems running kernels with NUMA disabled where the booted CPU count is lower than the CPU count of die 0
  • Stable Linux kernel branches addressed by patches 6cfc187, 7a2cb02, 7b568e9, cfab2c8, and f34feda

Discovery Timeline

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

Technical Details for CVE-2026-43079

Vulnerability Analysis

The vulnerability exists in the Intel uncore Performance Monitoring Unit (PMU) initialization code. During boot, the kernel parses an uncore discovery table to register PMU boxes for each die on the system. The registration routine uncore_pci_pmu_register() writes a pointer into the pmu->boxes[die] array indexed by the die identifier reported by the discovery table.

When NUMA is disabled and the system has fewer online CPUs than die 0 expects, the discovery table still references dies that have no online CPUs backing them. The kernel proceeds with registration regardless of the offline state. Indexing pmu->boxes[die] with a die value that exceeds the allocated array bounds produces an out-of-bounds write, manifested by the warning at uncore.c:1157.

Root Cause

The root cause is missing validation of die online status before parsing the discovery table entries. The original code path assumes all dies enumerated by hardware discovery have at least one online CPU. Without that check, the index used for pmu->boxes[die] can fall outside the allocated boxes array. This pattern is classified as an Out-of-Bounds Write [CWE-787] in kernel memory.

Attack Vector

Exploitation requires specific boot-time conditions: NUMA disabled and a CPU count below the die 0 CPU count. The trigger is local and dependent on hardware topology and kernel boot parameters rather than network input. The vulnerability primarily affects system stability and integrity rather than presenting a remote attack surface. The fix introduced across the referenced patches skips discovery table entries when all CPUs in the associated die are offline, preventing the array overflow.

No verified public exploit code is available. The advisory text and upstream patches describe the WARNING and fix without releasing proof-of-concept exploitation code. Refer to the upstream commits for the precise diff.

Detection Methods for CVE-2026-43079

Indicators of Compromise

  • Kernel ring buffer entries containing WARNING: CPU: <n> PID: <n> at uncore.c:1157 uncore_pci_pmu_register+0x136/0x160 [intel_uncore]
  • Boot logs showing the intel_uncore module loading on systems where NUMA is disabled and online CPU count is below die 0 capacity
  • Unexpected kernel taint flags after the intel_uncore module initializes

Detection Strategies

  • Inspect dmesg and /var/log/kern.log for the specific WARNING signature referencing uncore_pci_pmu_register
  • Audit kernel command lines and BIOS settings for NUMA-disabled configurations on multi-die Intel platforms
  • Compare running kernel versions against the patched stable branches referenced by upstream commits 6cfc187, 7a2cb02, 7b568e9, cfab2c8, and f34feda

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on uncore_pci_pmu_register warning patterns
  • Track kernel taint state across the fleet via configuration management to identify hosts entering a degraded state after boot
  • Maintain an inventory of Intel multi-die hosts with NUMA-disabled BIOS profiles and prioritize them for kernel updates

How to Mitigate CVE-2026-43079

Immediate Actions Required

  • Update affected systems to a Linux kernel release that incorporates the upstream fix from one of the referenced stable commits
  • On hosts that cannot be patched immediately, enable NUMA in BIOS or boot all CPUs of die 0 to avoid the triggering condition
  • Verify after reboot that the uncore_pci_pmu_register warning no longer appears in dmesg

Patch Information

The issue is resolved in the upstream Linux kernel by skipping discovery table entries for dies whose CPUs are all offline. The fix is distributed across multiple stable branches in the following commits: Kernel Patch Update 6cfc187, Kernel Patch Update 7a2cb02, Kernel Patch Update 7b568e9, Kernel Patch Update cfab2c8, and Kernel Patch Update f34feda. Apply the commit corresponding to your stable branch.

Workarounds

  • Re-enable NUMA in firmware settings to prevent the boot condition that exposes the bug
  • Avoid booting with maxcpus= or nr_cpus= values lower than the die 0 CPU count on multi-die Intel hardware
  • Blacklist or unload the intel_uncore module on systems that do not require uncore PMU telemetry until the kernel is patched
bash
# Configuration example: prevent intel_uncore from loading until patched
echo 'blacklist intel_uncore' | sudo tee /etc/modprobe.d/disable-intel-uncore.conf
sudo update-initramfs -u
# Verify after reboot
lsmod | grep intel_uncore
dmesg | grep -i uncore_pci_pmu_register

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Update 6cfc187

  • Kernel Patch Update 7a2cb02

  • Kernel Patch Update 7b568e9

  • Kernel Patch Update cfab2c8

  • Kernel Patch Update f34feda
  • Related CVEs
  • CVE-2026-31747: Linux Kernel Buffer Overflow Vulnerability

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

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

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