Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23002

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

CVE-2026-23002 is a use-after-free vulnerability in the Linux kernel's lib/buildid component that causes NULL pointer dereference. This article covers the technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2026-23002 Overview

CVE-2026-23002 is a Null Pointer Dereference vulnerability in the Linux kernel's lib/buildid component. The vulnerability occurs when the kernel attempts to read build ID information using direct page cache access via read_cache_folio() in a sleepable context, leading to a kernel BUG with the error message "unable to handle kernel NULL pointer dereference in filemap_read_folio".

The patch resolves this issue by converting the freader implementation to use __kernel_read() instead of direct page cache access for sleepable contexts. This simplifies the faultable code path by leveraging the standard kernel file reading interface, which properly handles all the complexity of reading file data.

Critical Impact

Local attackers may trigger a kernel crash (denial of service) by exploiting the null pointer dereference condition in the buildid reading functionality.

Affected Products

  • Linux kernel (versions prior to patched releases)

Discovery Timeline

  • 2026-01-25 - CVE-2026-23002 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-23002

Vulnerability Analysis

The vulnerability exists in the Linux kernel's build ID reading functionality within lib/buildid. When the kernel reads build ID information in a sleepable context, it previously used direct page cache access through read_cache_folio(). This approach fails to properly handle certain edge cases, resulting in a null pointer dereference when the code attempts to access memory through an invalid pointer in the filemap_read_folio function.

The Syzbot fuzzer identified this issue, demonstrating that the vulnerable code path could be triggered, causing a kernel panic. The root cause stems from improper handling of file reading operations in contexts where the process may sleep.

Root Cause

The root cause is the use of direct page cache access via read_cache_folio() in sleepable contexts within the lib/buildid freader implementation. This approach does not properly handle all the complexity of reading file data, particularly when the target folios may not be readily available or when memory access conditions are not properly validated. The direct page cache access assumes certain preconditions that may not hold true in all sleepable contexts, leading to null pointer access.

Attack Vector

The attack vector involves triggering the vulnerable code path in the kernel's build ID reading functionality. An attacker with local access could potentially trigger this vulnerability by manipulating file access patterns or memory conditions that cause the read_cache_folio() function to encounter the null pointer condition. This could result in a kernel crash, causing a denial of service condition on the affected system.

The fix implements the use of __kernel_read() for sleepable contexts, which provides a more robust and standard interface for file reading that handles edge cases appropriately. The non-sleepable context code path using filemap_get_folio() was left unchanged to keep the patch simple and easier to backport to stable kernels.

Detection Methods for CVE-2026-23002

Indicators of Compromise

  • Kernel panic messages containing "BUG: unable to handle kernel NULL pointer dereference in filemap_read_folio"
  • System crashes or unexpected reboots without clear hardware cause
  • Kernel oops messages referencing lib/buildid or freader functions in stack traces

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for null pointer dereference errors in filemap_read_folio
  • Implement kernel crash dump analysis to identify exploitation attempts targeting this vulnerability
  • Use SentinelOne Singularity platform for real-time kernel-level monitoring and anomaly detection

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information on system crashes
  • Configure log aggregation to centrally monitor kernel messages across all Linux systems
  • Deploy endpoint detection and response (EDR) solutions capable of detecting kernel-level anomalies

How to Mitigate CVE-2026-23002

Immediate Actions Required

  • Apply the latest kernel patches from your Linux distribution vendor
  • Review and update to patched kernel versions as they become available
  • Monitor systems for signs of exploitation while awaiting patch deployment
  • Consider temporarily restricting local access to critical systems if patch application is delayed

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix converts the freader implementation to use __kernel_read() instead of direct page cache access for sleepable contexts. Patches are available from the kernel git repository:

  • Kernel Git Patch 568aeb3
  • Kernel Git Patch 777a856
  • Kernel Git Patch b11dfb7

Workarounds

  • Limit local user access to systems running vulnerable kernel versions
  • Implement additional monitoring for kernel crash events as an early warning system
  • Ensure system backups are current to enable rapid recovery from potential denial of service incidents

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 Git Patch 568aeb3

  • Kernel Git Patch 777a856

  • Kernel Git Patch b11dfb7
  • Related CVEs
  • CVE-2026-31414: Linux Kernel Use-After-Free Vulnerability

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

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

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