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

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

CVE-2026-43313 is a use-after-free flaw in the Linux Kernel ACPI processor module that causes NULL-pointer dereference. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43313 Overview

CVE-2026-43313 is a NULL pointer dereference vulnerability in the Linux kernel's ACPI processor subsystem. The flaw resides in the acpi_processor_errata_piix4() function, which handles errata workarounds for the Intel PIIX4 chipset. The function reuses a single dev pointer across two consecutive pci_get_subsys() lookups for an IDE device and an ISA device. When the first lookup succeeds and the second fails, dev is overwritten with NULL, and the subsequent dev_dbg(&dev->dev, ...) call dereferences the NULL pointer. Exploitation requires local access and triggers a kernel crash, resulting in denial of service [CWE-476].

Critical Impact

A local low-privileged user on an affected Linux system can trigger a kernel NULL pointer dereference leading to a system crash and high availability impact.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 2.6.12 (including rc2 through rc5)
  • Systems using the ACPI processor driver on PIIX4-class hardware

Discovery Timeline

  • 2026-05-08 - CVE-2026-43313 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43313

Vulnerability Analysis

The vulnerability is located in acpi_processor_errata_piix4() in the Linux kernel's ACPI processor driver. The function probes for legacy Intel PIIX4 chipset devices to apply bus master interrupt errata workarounds. It performs two PCI subsystem lookups using pci_get_subsys(): one for the IDE device (PCI_DEVICE_ID_INTEL_82371AB) and another for the ISA device (PCI_DEVICE_ID_INTEL_82371AB_0). Both lookups assign their result to the same dev pointer variable.

If the IDE lookup returns a valid device but the ISA lookup returns NULL, dev is overwritten with NULL. Later in the function, if errata.piix4.bmisx is set, the kernel invokes dev_dbg(&dev->dev, ...), which dereferences the now-NULL dev pointer. The fix introduces two independent temporary pointers so each device handle is tracked separately, preventing the overwrite.

Root Cause

The root cause is unsafe pointer reuse without intermediate NULL validation. The original code assumed both pci_get_subsys() calls would succeed or fail together, an assumption that breaks on systems where the IDE function is present but the ISA function is not enumerated. Classified under [CWE-476] NULL Pointer Dereference, the bug is a defensive programming oversight in early driver initialization logic.

Attack Vector

Exploitation requires local access with low privileges on a system whose hardware topology causes the asymmetric PCI lookup result. There is no network attack surface and no user interaction beyond triggering the affected code path. The outcome is a kernel oops or panic, producing a denial-of-service condition. The vulnerability does not provide a path to code execution, privilege escalation, or information disclosure.

No public proof-of-concept or in-the-wild exploitation has been reported.

Detection Methods for CVE-2026-43313

Indicators of Compromise

  • Kernel oops or panic messages referencing acpi_processor_errata_piix4 in dmesg or /var/log/kern.log
  • Unexpected system reboots or hangs during ACPI processor driver initialization at boot
  • NULL pointer dereference stack traces involving dev_dbg calls from the ACPI processor module

Detection Strategies

  • Inventory running kernel versions across Linux hosts and compare against the patched commits published on git.kernel.org for this CVE
  • Audit kernel crash dumps and kdump archives for signatures matching the acpi_processor_errata_piix4() call path
  • Correlate hardware platform data with kernel version data to identify legacy PIIX4-class systems running unpatched kernels

Monitoring Recommendations

  • Forward kernel ring buffer logs to a centralized log platform and alert on BUG: unable to handle kernel NULL pointer dereference events
  • Track patch deployment status across the fleet using configuration management telemetry
  • Monitor for repeated boot failures or crash loops on systems following kernel updates

How to Mitigate CVE-2026-43313

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the stable tree commits for this CVE
  • Update to a distribution kernel that includes the fix from your Linux vendor (Red Hat, SUSE, Ubuntu, Debian)
  • Restrict local shell access on multi-user systems running unpatched kernels until updates are applied

Patch Information

The fix is committed across multiple stable branches. Reference patches include Kernel Git Commit 01e8751, Kernel Git Commit 0398b6, Kernel Git Commit 06724a6, Kernel Git Commit 29f60d3, Kernel Git Commit ad86ac6, Kernel Git Commit b803811, and Kernel Git Commit f132e08. The change replaces the reused dev pointer with two independent temporary pointers.

Workarounds

  • Disable the ACPI processor driver on affected legacy hardware if a kernel update cannot be applied immediately
  • Limit local user accounts and enforce least-privilege access controls to reduce exposure
  • Schedule reboots into patched kernels during the next maintenance window to ensure the fix loads
bash
# Verify running kernel and check for vendor-provided update
uname -r
# Debian/Ubuntu
sudo apt update && sudo apt install --only-upgrade linux-image-$(uname -r | cut -d- -f2-)
# RHEL/CentOS/Fedora
sudo dnf update kernel
# Reboot to load the patched kernel
sudo systemctl reboot

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit 01e8751

  • Kernel Git Commit 0398b6

  • Kernel Git Commit 06724a6

  • Kernel Git Commit 29f60d3

  • Kernel Git Commit ad86ac6

  • Kernel Git Commit b803811

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

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

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

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