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-2026-23138

CVE-2026-23138: Linux Kernel DOS Vulnerability

CVE-2026-23138 is a denial of service vulnerability in the Linux kernel tracing subsystem caused by infinite recursion in stack trace recording. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23138 Overview

A vulnerability has been resolved in the Linux kernel's tracing subsystem where an infinite recursion could occur when tracing RCU events with the kernel stack trace trigger enabled. The stack trace code called back into RCU which then called the stack trace again, creating a recursive loop that could lead to system instability or denial of service conditions.

Critical Impact

The infinite recursion in the kernel tracing subsystem can cause kernel stack overflow, potentially leading to system crashes and denial of service on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions with tracing subsystem enabled)

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23138 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23138

Vulnerability Analysis

This vulnerability exists in the Linux kernel's tracing infrastructure, specifically in the kernel stack trace recording functionality. When the kernel stack trace trigger is enabled while tracing RCU (Read-Copy-Update) events, a dangerous recursive loop can be triggered. The stack trace code invokes RCU operations during its execution, which in turn triggers additional stack trace events, creating an unbounded recursive call chain.

The fix expands the ftrace recursion protection mechanism by adding a set of bits to protect events from recursion. Each bit represents the execution context (normal, softirq, interrupt, and NMI), allowing the kernel to detect and prevent recursive calls within the same context. The stack trace code now uses the interrupt context bit to protect against this specific recursion scenario.

Root Cause

The root cause is a missing recursion protection mechanism in the kernel stack trace recording code. The tracing subsystem did not account for the scenario where stack trace collection could trigger RCU operations, which could themselves be traced, leading to re-entrant calls to the stack trace code. The lack of context-aware recursion guards allowed the infinite loop condition to manifest.

Attack Vector

While this vulnerability requires specific kernel tracing configurations to be enabled, it could potentially be exploited by:

  1. An attacker with local access and sufficient privileges to enable kernel tracing
  2. Configuring RCU event tracing with stack trace triggers
  3. Triggering conditions that cause RCU operations during stack trace collection

The vulnerability primarily poses a denial of service risk through kernel stack exhaustion and subsequent system crash.

The vulnerability manifests in the tracing subsystem's stack trace recording path. When stack trace collection is triggered for an RCU event, the collection code itself may invoke RCU operations, which are also being traced, leading to recursive invocation. The fix adds recursion protection bits that track the current execution context (normal, softirq, interrupt, NMI) and prevent re-entrant calls within the same context. For technical implementation details, see the kernel git commit.

Detection Methods for CVE-2026-23138

Indicators of Compromise

  • Kernel panic or system crash with stack trace showing recursive calls through ftrace and RCU functions
  • System log entries indicating stack overflow in kernel tracing paths
  • Repeated kernel oops messages related to the tracing subsystem

Detection Strategies

  • Monitor kernel logs for stack overflow errors or recursive function call patterns
  • Audit kernel tracing configurations for potentially dangerous RCU event tracing with stack triggers
  • Implement kernel watchdog monitoring to detect system hangs caused by infinite loops

Monitoring Recommendations

  • Enable kernel crash dump collection to capture diagnostic information during failures
  • Monitor system stability metrics on systems with kernel tracing enabled
  • Review dmesg output for recursion-related warnings in the tracing subsystem

How to Mitigate CVE-2026-23138

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the recursion protection fix
  • Temporarily disable stack trace triggers for RCU events if immediate patching is not possible
  • Review and audit kernel tracing configurations on affected systems

Patch Information

The vulnerability has been addressed in kernel commits available through the stable kernel tree. The fix expands ftrace recursion protection with context-aware bits to prevent recursive stack trace calls.

Relevant kernel patches:

  • Kernel Git Commit 5b7f91ac
  • Kernel Git Commit 5f1ef0df

Workarounds

  • Disable kernel tracing for RCU events temporarily using echo 0 > /sys/kernel/debug/tracing/events/rcu/enable
  • Avoid enabling stack trace triggers on RCU-related trace events until the kernel is patched
  • Consider limiting kernel tracing capabilities to trusted administrators only
bash
# Configuration example - Disable RCU event tracing as a temporary workaround
echo 0 > /sys/kernel/debug/tracing/events/rcu/enable

# Alternatively, disable all tracing temporarily
echo 0 > /sys/kernel/debug/tracing/tracing_on

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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