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

CVE-2026-43171: Linux Kernel Information Disclosure Bug

CVE-2026-43171 is an information disclosure flaw in the Linux kernel's EFI/CPER module that can expose sensitive memory data or cause system crashes. This article covers technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-43171 Overview

CVE-2026-43171 is a Linux kernel vulnerability in the EFI Common Platform Error Record (CPER) handling code. The flaw resides in cper_print_fw_err(), which fails to validate that the error record length is large enough to accommodate the supplied offset. When a malformed firmware error record presents an offset larger than the record itself, the subsequent length -= offset calculation underflows. The kernel then attempts to hex-dump a region far larger than intended.

Critical Impact

A bad firmware error record can cause the kernel to dump large memory regions, leak sensitive kernel memory contents to logs, or trigger a kernel OOPS when accessing unmapped pages.

Affected Products

  • Linux kernel versions containing the vulnerable cper_print_fw_err() logic in the EFI/CPER subsystem
  • Distributions that ship the affected drivers/firmware/efi/cper.c code path
  • Systems that process firmware error records via ACPI/APEI on UEFI platforms

Discovery Timeline

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

Technical Details for CVE-2026-43171

Vulnerability Analysis

The Linux kernel parses firmware error records delivered by UEFI platforms through the CPER format. These records describe hardware faults reported by firmware and are printed to the kernel log. The function cper_print_fw_err() in the EFI/CPER subsystem walks each section, computes the remaining record length using the section offset, and then issues a hex dump of the section payload.

The defect is an integer underflow in size arithmetic [CWE-191]. The function performs length -= offset without first verifying that offset is less than or equal to length. Because length is an unsigned size value, an offset that exceeds the record length wraps the result to a very large positive number. The hex dump routine then walks far past the intended buffer.

The practical outcomes are threefold. The kernel spends excessive time iterating over hundreds of megabytes, producing a denial-of-service condition. Sensitive kernel memory adjacent to the record is written into the kernel ring buffer, creating an information disclosure path. If the runaway dump reaches an unmapped page, the kernel raises an OOPS.

Root Cause

The root cause is missing input validation on attacker- or firmware-controlled length and offset fields prior to performing pointer and size arithmetic. The fix adds a length check that rejects sections whose declared length is too small to contain the offset, preventing the underflow before any hex dump is issued.

Attack Vector

Exploitation requires the kernel to consume a malicious or corrupted CPER record. This typically arrives from platform firmware via ACPI/APEI, the EFI runtime, or persistent error storage. An attacker capable of influencing firmware error records, such as through a compromised BMC, malicious firmware update, or crafted persistent store entries, can trigger the underflow on the next record processing event.

No verified public exploit code is available. The vulnerability mechanics are documented in the upstream commits referenced below. See the Linux Kernel Commit 02de64a and the Linux Kernel Commit 0e09b52 for the source-level fix details.

Detection Methods for CVE-2026-43171

Indicators of Compromise

  • Unusually large hex dumps in dmesg or /var/log/kern.log originating from the EFI/CPER subsystem.
  • Kernel OOPS or panic messages referencing cper_print_fw_err or cper.c in the call stack.
  • Sustained high CPU utilization in kernel context shortly after firmware error reporting events.

Detection Strategies

  • Audit running kernel versions across the fleet and compare against the patched stable trees referenced in the upstream commits.
  • Monitor kernel logs for repeated Firmware Error CPER entries followed by oversized binary output.
  • Correlate ACPI/APEI error injection or hardware error events with subsequent kernel instability.

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized log platform and alert on EFI/CPER messages exceeding normal size thresholds.
  • Track kernel crash artifacts (kdump, pstore) for stack frames that include CPER print routines.
  • Review BMC and firmware update logs for unauthorized changes that could influence error record content.

How to Mitigate CVE-2026-43171

Immediate Actions Required

  • Apply the upstream stable kernel update that includes the section-length validation fix referenced in the linked commits.
  • Rebuild and redeploy custom kernels that vendor drivers/firmware/efi/cper.c from affected versions.
  • Restrict administrative access to firmware update channels and BMC interfaces to limit who can influence CPER content.

Patch Information

The fix adds a length check before invoking the hex dump in cper_print_fw_err(), rejecting records where the section length is smaller than the offset. Backports are available across multiple stable trees. See the upstream commits: Linux Kernel Commit 54e131d, Linux Kernel Commit 55cc6fe, Linux Kernel Commit 5a9b1dd, Linux Kernel Commit 64ae5aa, Linux Kernel Commit 7780c0b, and Linux Kernel Commit a8419f5.

Workarounds

  • Restrict dmesg access to privileged users by setting kernel.dmesg_restrict=1 to reduce information disclosure exposure if a vulnerable kernel cannot be patched immediately.
  • Disable or limit ACPI/APEI error reporting paths on platforms where firmware integrity cannot be assured, where supported by the hardware vendor.
  • Validate firmware integrity using vendor-signed updates and Secure Boot to reduce the likelihood of crafted CPER records being injected.
bash
# Restrict kernel log access as a partial mitigation
sudo sysctl -w kernel.dmesg_restrict=1
echo 'kernel.dmesg_restrict=1' | sudo tee -a /etc/sysctl.d/99-cve-2026-43171.conf

# Verify the running kernel version against patched stable trees
uname -r

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 Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit: 02de64a

  • Linux Kernel Commit: 0e09b52

  • Linux Kernel Commit: 54e131d

  • Linux Kernel Commit: 55cc6fe

  • Linux Kernel Commit: 5a9b1dd

  • Linux Kernel Commit: 64ae5aa

  • Linux Kernel Commit: 7780c0b

  • Linux Kernel Commit: a8419f5
  • Related CVEs
  • CVE-2026-31708: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43088: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43085: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43089: 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