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

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

CVE-2026-23380 is a use-after-free vulnerability in the Linux kernel's tracing subsystem that triggers on process forking. This post explains its technical details, affected versions, impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-23380 Overview

A vulnerability has been identified in the Linux kernel's tracing subsystem that affects the tracing_buffers_mmap_close function. When a process forks, the child process copies the parent's Virtual Memory Areas (VMAs) but the user_mapped reference count is not properly incremented. This results in a double-call scenario when both parent and child processes exit, triggering a WARN_ON condition when the reference count reaches zero prematurely.

Critical Impact

Local attackers can potentially trigger denial of service conditions or system instability by exploiting the reference count mismatch in the tracing subsystem's memory mapping functionality.

Affected Products

  • Linux kernel (versions with vulnerable tracing subsystem)
  • Systems using kernel tracing functionality with memory-mapped buffers
  • Environments where madvise(MADVISE_DOFORK) can be called by applications

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23380 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23380

Vulnerability Analysis

This vulnerability exists in the Linux kernel's tracing subsystem, specifically in how memory-mapped tracing buffers handle process forking. Under normal circumstances, the tracing buffer memory is mapped with the VM_DONTCOPY flag set, which prevents the VMA from being copied during fork operations. However, this flag is only a hint and can be overridden by an application calling madvise(MADVISE_DOFORK), which resets the VM_DONTCOPY flag.

When an application resets this flag and subsequently forks, both the parent and child processes end up with references to the same tracing buffer mapping. The problem arises because the user_mapped reference count is not incremented when the VMA is copied during the fork. When both processes exit, tracing_buffers_mmap_close() is called twice—once for each process—but the reference count was only set up for a single process. On the second call, user_mapped is already 0, causing the function to return -ENODEV and triggering a WARN_ON that can destabilize the system.

Root Cause

The root cause is an improper reference counting mechanism in the VMA's open callback for tracing buffer mappings. When the VMA is copied during a fork operation (after VM_DONTCOPY has been cleared), the kernel copies the memory mapping to the child process but fails to increment the user_mapped reference counter. This violates the expected invariant that each mapping should have a corresponding reference count entry, leading to a reference count underflow condition when both mappings are closed.

Attack Vector

An attacker with local access can exploit this vulnerability by:

  1. Opening a tracing buffer and establishing a memory mapping
  2. Calling madvise(MADVISE_DOFORK) on the mapped region to clear the VM_DONTCOPY flag
  3. Forking the process to create a child with a copied VMA
  4. Exiting both processes, which triggers the double-close condition

The vulnerability can result in kernel warnings and potential system instability. While the immediate effect is a WARN_ON condition, repeated exploitation could lead to denial of service conditions or potentially expose other kernel memory corruption issues.

Detection Methods for CVE-2026-23380

Indicators of Compromise

  • Presence of WARN_ON messages in kernel logs related to tracing_buffers_mmap_close
  • Unexpected -ENODEV errors in tracing subsystem operations
  • System instability following fork operations in processes using tracing buffers

Detection Strategies

  • Monitor kernel logs for warning messages containing tracing_buffers_mmap_close or reference count errors
  • Implement audit rules to track processes calling madvise with MADVISE_DOFORK on tracing-related memory regions
  • Use kernel probes or eBPF to monitor fork operations involving memory-mapped tracing buffers

Monitoring Recommendations

  • Enable comprehensive kernel logging to capture WARN_ON events in production environments
  • Deploy SentinelOne Singularity Platform for real-time kernel-level monitoring and anomaly detection
  • Implement alerting for unusual patterns of fork operations combined with tracing subsystem access

How to Mitigate CVE-2026-23380

Immediate Actions Required

  • Apply the latest kernel patches from the Linux kernel stable branch
  • Review and restrict access to tracing subsystem functionality for non-privileged users
  • Consider disabling unnecessary tracing features in production environments until patches are applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix increments the user_mapped reference count in the VMA's open callback without re-mapping the pages, ensuring proper reference counting when VMAs are copied during fork operations. Patches are available through the kernel stable commits:

  • Commit 91f3e8d84c89
  • Commit b0f269ba6fef
  • Commit cdd96641b642
  • Commit e39bb9e02b68

Workarounds

  • Restrict access to /sys/kernel/debug/tracing and related tracing interfaces to trusted users only
  • Implement security policies preventing unprivileged users from calling madvise(MADVISE_DOFORK) on sensitive memory regions
  • Consider using kernel module parameters or boot configurations to limit tracing functionality exposure

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
  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log
  • 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