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

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

CVE-2026-43148 is a use-after-free flaw in the Linux kernel's powerpc/smp component that could lead to NULL pointer dereference. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43148 Overview

CVE-2026-43148 is a null pointer dereference vulnerability in the Linux kernel's PowerPC SMP (Symmetric Multi-Processing) subsystem. The flaw resides in the parse_thread_groups() function, where the return value of kcalloc() was not validated before being passed to of_property_read_u32_array(). When kcalloc() fails to allocate memory under pressure, the unchecked NULL pointer is dereferenced, triggering a kernel oops.

The issue affects PowerPC platforms parsing thread group properties from the device tree during SMP initialization. Maintainers have resolved the vulnerability by adding the missing return value check before further use.

Critical Impact

A failed memory allocation during PowerPC SMP initialization can trigger a kernel null pointer dereference, leading to denial of service on affected systems.

Affected Products

  • Linux kernel on PowerPC architecture (mainline and stable branches prior to the referenced fixes)
  • Distributions shipping unpatched Linux kernels with arch/powerpc/kernel/smp.c containing the unchecked kcalloc() call
  • Stable kernel branches addressed by patches 1de31dba, 33c1c6d8, 8b221db0, 9b85c8f6, 9d0ca112, b265e53d, and ca46d209

Discovery Timeline

  • 2026-05-06 - CVE-2026-43148 published to the National Vulnerability Database (NVD)
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43148

Vulnerability Analysis

The vulnerability is a null pointer dereference [CWE-476] in PowerPC SMP initialization code. The function parse_thread_groups() in arch/powerpc/kernel/smp.c allocates a buffer using kcalloc() to hold thread group data parsed from the firmware device tree. The original code passed this allocated pointer directly to of_property_read_u32_array() without verifying that the allocation succeeded.

When the kernel operates under memory pressure, kcalloc() may return NULL. The subsequent call to of_property_read_u32_array() then dereferences a NULL pointer while attempting to write the parsed u32 array, producing a kernel oops. On PowerPC SMP boot paths, this occurs during early CPU topology setup, which can render the system unbootable or unstable.

The EPSS score is 0.024% with a percentile of 6.957, reflecting low expected exploitation activity. The flaw is a reliability and robustness defect rather than a memory corruption primitive granting code execution.

Root Cause

The root cause is missing return-value validation after a dynamic memory allocation. The kcalloc() API can fail and return NULL, and callers must check this condition before using the returned pointer. The fix introduces an explicit NULL check immediately after kcalloc() and propagates an appropriate error code to the caller, preventing further use of an invalid pointer.

Attack Vector

This vulnerability is local and requires conditions in which kernel memory allocations fail during PowerPC SMP setup. An attacker with the ability to induce memory pressure on the host, or environments where allocation failures occur naturally during boot, can trigger the dereference. The result is a kernel crash leading to denial of service. There is no public proof-of-concept and no indication of exploitation in the wild.

No verified exploit code is available for this CVE. See the upstream commits referenced below for the precise patch diffs and call sites.

Detection Methods for CVE-2026-43148

Indicators of Compromise

  • Kernel oops or panic messages referencing parse_thread_groups or of_property_read_u32_array in dmesg or serial console logs on PowerPC hosts
  • Boot failures or SMP initialization errors on PowerPC systems running unpatched kernels
  • Repeated unexpected reboots correlated with high memory pressure during early boot

Detection Strategies

  • Inventory PowerPC Linux systems and compare running kernel versions against the stable branches that received the listed fixes
  • Use distribution package management tools (e.g., rpm -q kernel, dpkg -l linux-image-*) to identify hosts missing the corresponding security update
  • Review kernel crash dumps and kdump archives for stack traces involving parse_thread_groups()

Monitoring Recommendations

  • Forward kernel logs from PowerPC hosts to a centralized logging or SIEM platform and alert on oops signatures referencing the affected function
  • Track patch deployment status across PowerPC infrastructure with vulnerability management tooling tied to CVE identifiers
  • Monitor host availability metrics for unexpected reboots on PowerPC SMP systems

How to Mitigate CVE-2026-43148

Immediate Actions Required

  • Update affected Linux kernels to a stable release containing one of the upstream fixes referenced by commit hashes 1de31dba, 33c1c6d8, 8b221db0, 9b85c8f6, 9d0ca112, b265e53d, or ca46d209
  • Prioritize patching on PowerPC hosts running production workloads where availability is critical
  • Validate kernel updates in a non-production environment before broad rollout to confirm SMP initialization succeeds

Patch Information

The Linux kernel maintainers have merged fixes adding a NULL check on the kcalloc() return value in parse_thread_groups(). The fix has been backported across multiple stable branches. Refer to the upstream commits: Kernel Patch 1de31dba, Kernel Patch 33c1c6d8, Kernel Patch 8b221db0, Kernel Patch 9b85c8f6, Kernel Patch 9d0ca112, Kernel Patch b265e53d, and Kernel Patch ca46d209.

Workarounds

  • No supported workaround exists; applying the upstream patch is the recommended remediation
  • Reduce the likelihood of allocation failures during boot by ensuring sufficient memory headroom on PowerPC hosts
  • Restrict local access on unpatched systems to limit an attacker's ability to induce memory pressure
bash
# Verify running kernel version on a PowerPC host
uname -r

# Example: update kernel on RHEL/CentOS-based PowerPC system
sudo dnf update kernel

# Example: update kernel on Debian/Ubuntu-based PowerPC system
sudo apt update && sudo apt install --only-upgrade linux-image-$(uname -r | sed 's/.*-//')

# Reboot to load the patched kernel
sudo 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 Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Update 1de31dba

  • Kernel Patch Update 33c1c6d8

  • Kernel Patch Update 8b221db0

  • Kernel Patch Update 9b85c8f6

  • Kernel Patch Update 9d0ca112

  • Kernel Patch Update b265e53d

  • Kernel Patch Update ca46d209
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

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