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
    • 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-2025-71118

CVE-2025-71118: Linux Kernel Use-After-Free Vulnerability

CVE-2025-71118 is a use-after-free vulnerability in the Linux kernel's ACPICA component that causes NULL pointer dereference crashes. This post explains its technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-71118 Overview

CVE-2025-71118 is a Null Pointer Dereference vulnerability in the Linux kernel's ACPICA (ACPI Component Architecture) subsystem. The vulnerability occurs when the kernel attempts to walk the ACPI Namespace with a NULL start_node, leading to a NULL pointer dereference in the acpi_ns_get_next_node() function. This issue was discovered affecting systems with certain malformed DSDT (Differentiated System Description Table) tables, specifically identified on Honor Magicbook 14 Pro laptops.

Critical Impact

Systems with affected BIOS/DSDT configurations may experience kernel crashes during ACPI namespace traversal, resulting in denial of service conditions and system instability.

Affected Products

  • Linux kernel (multiple versions)
  • Systems with Honor FMB-P/FMB-P-PCB motherboard with BIOS 1.13 (05/08/2025)
  • Other systems with malformed DSDT tables that result in NULL start_node values

Discovery Timeline

  • 2026-01-14 - CVE-2025-71118 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2025-71118

Vulnerability Analysis

This vulnerability resides in the ACPICA component of the Linux kernel, specifically in the ACPI namespace walking functionality. While a previous fix (commit 0c9992315e73) addressed scenarios where both start_node and acpi_gbl_root_node were NULL, it did not account for cases where only start_node is NULL while acpi_gbl_root_node remains valid.

The flaw manifests when the kernel accesses the parent_node member during namespace traversal in acpi_ns_get_next_node(). The NULL pointer dereference occurs regardless of whether start_node equals ACPI_ROOT_OBJECT, making the check placement critical for proper protection against this condition.

Root Cause

The root cause of this vulnerability is insufficient NULL pointer validation in the ACPI namespace walking code. The original fix placed the start_node NULL check inside a conditional block, which allowed code paths where start_node could still be NULL when accessing its members. The fix moves the NULL check outside of the if block to ensure it is always evaluated before any member access occurs.

The issue is triggered by malformed DSDT tables in certain device firmware. In the case of the Honor Magicbook 14 Pro, the BIOS (version 1.13, dated 05/08/2025) provides a DSDT table that results in a NULL start_node being passed to the namespace walking functions. The vendor (Honor) has reportedly refused to provide technical support for Linux, leaving the kernel developers to implement defensive checks against such firmware issues.

Attack Vector

The vulnerability is primarily triggered through:

  1. Malformed Firmware Tables: Systems with improperly constructed ACPI DSDT tables can trigger this vulnerability during normal boot or ACPI operations
  2. Specific Hardware Configurations: The Honor FMB-P/FMB-P-PCB platform with BIOS 1.13 is known to trigger this issue
  3. ACPI Namespace Operations: Any kernel operation that triggers ACPI namespace walking with a corrupted or NULL start node reference

The attack vector does not require user interaction and is triggered automatically during system initialization or ACPI-related kernel operations on affected hardware configurations.

Detection Methods for CVE-2025-71118

Indicators of Compromise

  • Kernel panic or crash messages referencing acpi_ns_get_next_node() or ACPICA namespace operations
  • System logs showing NULL pointer dereference in ACPI-related kernel functions
  • Unexpected system reboots during boot phase or ACPI-related operations
  • Presence of Honor FMB-P/FMB-P-PCB hardware with BIOS version 1.13

Detection Strategies

  • Monitor kernel logs (dmesg) for NULL pointer dereference errors in ACPI subsystem functions
  • Implement automated scanning for kernel crash dumps containing ACPICA-related stack traces
  • Check DMI information for known affected hardware platforms (Honor FMB-P/FMB-P-PCB)
  • Audit DSDT tables using ACPI tools (acpidump, iasl) for malformed entries

Monitoring Recommendations

  • Configure kernel crash dump collection (kdump) to capture detailed information on system crashes
  • Set up monitoring for kernel oops/panic events specifically in ACPI subsystem paths
  • Implement hardware inventory tracking to identify systems with known affected firmware
  • Monitor for repeated system instability patterns during boot or ACPI operations

How to Mitigate CVE-2025-71118

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits
  • Review and identify any systems running on Honor FMB-P/FMB-P-PCB hardware or similar affected platforms
  • Consider disabling or limiting ACPI functionality on affected systems if kernel updates are not immediately available
  • Implement kernel panic monitoring to detect exploitation attempts or triggered instances

Patch Information

The vulnerability has been addressed through multiple commits to the Linux kernel stable branches. Patches are available through the following kernel git commits:

  • Kernel Git Commit 0d8bb081
  • Kernel Git Commit 1bc34293
  • Kernel Git Commit 7f9b951e
  • Kernel Git Commit 9d6c58da
  • Kernel Git Commit b84edef4
  • Kernel Git Commit ecb29628
  • Kernel Git Commit f91dad0a

Organizations should update to the latest stable kernel version that includes these fixes.

Workarounds

  • If kernel updates cannot be immediately applied, consider using the acpi=off kernel boot parameter to disable ACPI entirely (note: this may significantly impact system functionality)
  • On virtualized systems, ensure the virtual firmware/BIOS provides valid ACPI tables
  • For affected Honor hardware, check for BIOS updates that may correct the malformed DSDT table
  • Implement system monitoring to detect and automatically recover from kernel crashes
bash
# Check current kernel version and verify patch status
uname -r

# View ACPI-related kernel messages for potential issues
dmesg | grep -i acpi

# Dump DSDT table for analysis (requires acpidump tool)
sudo acpidump -b -o dsdt.dat

# Disassemble DSDT for inspection (requires iasl tool)
iasl -d dsdt.dat

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

  • EPSS Probability0.03%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

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

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

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

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