A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Read More
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-23088

CVE-2026-23088: Linux Kernel Privilege Escalation Flaw

CVE-2026-23088 is a privilege escalation vulnerability in the Linux kernel tracing subsystem that causes crashes when synthetic stacktrace fields are used. This article covers technical details, affected versions, and mitigations.

Published: February 6, 2026

CVE-2026-23088 Overview

CVE-2026-23088 is a kernel vulnerability in the Linux kernel's tracing subsystem that causes a system crash when creating and enabling synthetic events that utilize stacktrace fields from other synthetic events. The vulnerability occurs in the trace_event_raw_event_synth() function where stacktrace fields are incorrectly treated as normal fields rather than dynamic arrays, leading to improper memory access and a kernel panic.

Critical Impact

This vulnerability allows local users with access to the tracing filesystem (/sys/kernel/tracing) to trigger a kernel crash through manipulation of synthetic events with stacktrace fields, resulting in a denial of service condition.

Affected Products

  • Linux kernel with tracing subsystem enabled
  • Systems with /sys/kernel/tracing accessible to users
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • February 4, 2026 - CVE CVE-2026-23088 published to NVD
  • February 5, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23088

Vulnerability Analysis

The vulnerability resides in the Linux kernel's tracing subsystem, specifically in how synthetic events handle stacktrace fields inherited from other synthetic events. When a synthetic event is created that references a stacktrace field from another synthetic event, and that new event is subsequently enabled or used in a histogram, the kernel crashes with a page fault.

The crash occurs because the stacktrace field is not properly labeled as a dynamic array type. In trace_event_raw_event_synth(), the event field is still treated as a dynamic array for storage purposes, but the data retrieval mechanism treats it as a normal field. This mismatch causes the code to access metadata instead of the actual dynamic array data, resulting in an invalid memory access at address 0x0000000000400010.

The issue manifests when chaining synthetic events together. A user creates a first synthetic event with a stacktrace field, attaches it to a trigger, then creates a second synthetic event that references the stacktrace from the first event. Upon enabling the second synthetic event, the kernel attempts to read from an invalid memory location.

Root Cause

The root cause is a type mismatch in the synthetic event handling code. Stacktrace fields in synthetic events require special handling as dynamic arrays, but when these fields are passed between synthetic events, the type information is lost. The receiving synthetic event treats the stacktrace field reference as a simple field value rather than a pointer to a dynamic array structure.

Specifically, in trace_event_raw_event_synth(), the code path for processing event fields checks whether a field is a dynamic array but fails to account for the case where a stacktrace field is inherited from another synthetic event. The field's is_stack or equivalent flag is not properly propagated during event creation.

Attack Vector

The attack requires local access to the system with permissions to write to the tracing filesystem, typically located at /sys/kernel/tracing. An attacker would perform the following sequence:

  1. Create an initial synthetic event with a stacktrace field
  2. Attach the synthetic event to an existing trace event using histogram triggers
  3. Create a second synthetic event that references the stacktrace from the first event
  4. Enable the second synthetic event or use it in a histogram trigger

The kernel will crash when attempting to process the chained stacktrace field, causing a denial of service. This attack does not require elevated privileges beyond write access to the tracing filesystem, which may be available to non-root users in certain configurations.

Detection Methods for CVE-2026-23088

Indicators of Compromise

  • Kernel crash logs showing page fault at address 0x0000000000400010 or similar low memory addresses
  • Oops messages referencing trace_event_raw_event_synth in the call trace
  • System crashes occurring after manipulation of files in /sys/kernel/tracing/dynamic_events or trigger files
  • BUG messages indicating supervisor read access in kernel mode with error code 0x0000

Detection Strategies

  • Monitor for unusual activity in the /sys/kernel/tracing filesystem, particularly writes to dynamic_events and trigger files
  • Implement kernel log monitoring for crash signatures containing trace_event_raw_event_synth function references
  • Track process access patterns to the tracing subsystem, especially sequences of synthetic event creation followed by enabling

Monitoring Recommendations

  • Enable kernel auditing for write operations to /sys/kernel/tracing/dynamic_events and event trigger files
  • Configure crash dump collection to capture kernel state when page faults occur in the tracing subsystem
  • Implement alerting for kernel oops messages that reference synthetic event processing functions

How to Mitigate CVE-2026-23088

Immediate Actions Required

  • Apply the security patches from the Linux kernel stable branches
  • Restrict access to the /sys/kernel/tracing filesystem to trusted administrators only
  • Consider disabling the tracing subsystem if not required for production workloads
  • Monitor systems for exploitation attempts targeting the tracing filesystem

Patch Information

Security patches have been released to the Linux kernel stable branches. The fix ensures that stacktrace fields are properly labeled and handled as dynamic arrays when passed between synthetic events. The patch commits can be found in the kernel git repository:

  • Kernel Git Commit 327af07dff6ab5650b21491eb4f69694999ff3d1
  • Kernel Git Commit 3b90d099efa2b67239bd3b3dc3521ec584261748
  • Kernel Git Commit 90f9f5d64cae4e72defd96a2a22760173cb3c9ec
  • Kernel Git Commit 98ecbfb2598c9c7ca755a29f402da9d36c057077

Workarounds

  • Restrict access to /sys/kernel/tracing by adjusting filesystem permissions to root-only access
  • Disable synthetic event functionality if not required by removing the CONFIG_SYNTH_EVENTS kernel configuration option
  • Use SELinux or AppArmor policies to limit which processes can write to the tracing filesystem
  • Monitor and audit all access to tracing-related files until patches can be applied
bash
# Restrict tracing filesystem access to root only
chmod 700 /sys/kernel/tracing
chmod 700 /sys/kernel/debug/tracing

# Alternatively, unmount the tracing filesystem if not needed
umount /sys/kernel/tracing
umount /sys/kernel/debug/tracing

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43344: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43306: Linux Kernel Privilege Escalation Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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