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

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

CVE-2026-23392 is a use-after-free vulnerability in the Linux kernel's netfilter nf_tables component that can be triggered during flowtable error handling. This post covers the technical details, affected systems, and mitigations.

Published: March 27, 2026

CVE-2026-23392 Overview

CVE-2026-23392 is a use-after-free vulnerability in the Linux kernel's netfilter nf_tables subsystem. The vulnerability exists in the flowtable handling code where improper synchronization during error path cleanup can lead to memory being accessed after it has been freed. Specifically, when unregistering hooks from the error path, the code fails to call synchronize_rcu() before releasing the flowtable, allowing already-registered hooks that reference this flowtable to access freed memory through the packet path and nfnetlink_hook control plane.

Critical Impact

This use-after-free vulnerability in the Linux kernel's netfilter subsystem could allow attackers to trigger memory corruption, potentially leading to kernel crashes or arbitrary code execution in kernel context.

Affected Products

  • Linux kernel (versions with vulnerable nf_tables flowtable implementation)
  • Systems using netfilter/nftables for packet filtering
  • Linux distributions with affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-23392

Vulnerability Analysis

This vulnerability was uncovered by KASAN (Kernel Address Sanitizer), which reported a use-after-free condition in the nfnetlink_hook path when dumping hooks. The issue arises in the error handling code path of the nf_tables flowtable implementation.

When a flowtable registration fails—which can occur when the maximum number of hooks is reached or when hardware offload setup fails—the error path unregisters the hooks but releases the flowtable memory without first calling synchronize_rcu(). This creates a race condition where another hook that already references this flowtable may still be registered and actively processing packets, leading to use-after-free access.

The error path is triggered under rare conditions, specifically:

  • When reaching the maximum number of hooks
  • When failing to set up hardware offload
  • When a device hook check detects an already-used device hook by a different flowtable, resulting in EEXIST at this late stage

Root Cause

The root cause is missing RCU (Read-Copy-Update) synchronization in the error path of flowtable hook registration. The code unregisters hooks but immediately proceeds to free the flowtable memory without waiting for the RCU grace period to complete. This violates the RCU memory reclamation model where readers may still hold references to the object being freed.

The fix adds a synchronize_rcu() call after unregistering the hooks in the error path, ensuring all RCU-protected readers have completed their critical sections before the flowtable memory is released.

Attack Vector

An attacker with local access and sufficient privileges to manipulate netfilter/nftables configuration could potentially trigger this vulnerability by:

  1. Creating flowtable configurations that exercise the error paths (e.g., exceeding hook limits or forcing hardware offload failures)
  2. Racing the flowtable teardown with packet processing or hook dumping operations via nfnetlink_hook
  3. Exploiting the resulting use-after-free to corrupt kernel memory or achieve code execution

The vulnerability requires local access and typically root or CAP_NET_ADMIN capabilities to configure nftables flowtables. The technical complexity of reliably triggering and exploiting this race condition is significant, but successful exploitation could result in privilege escalation or kernel code execution.

Detection Methods for CVE-2026-23392

Indicators of Compromise

  • Kernel crashes or panics with stack traces involving nfnetlink_hook, nf_tables, or flowtable-related functions
  • KASAN reports indicating use-after-free in netfilter subsystem code paths
  • Unexpected system instability when manipulating nftables flowtable configurations

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) on development and testing systems to detect use-after-free conditions
  • Monitor kernel logs for netfilter-related errors, particularly those involving flowtable registration failures
  • Deploy kernel live patching solutions to detect and protect against exploitation attempts

Monitoring Recommendations

  • Configure kernel crash dump collection to capture and analyze kernel panics for forensic investigation
  • Implement audit logging for nftables configuration changes using auditd rules for nft commands
  • Use SentinelOne's kernel-level monitoring to detect anomalous netfilter subsystem behavior

How to Mitigate CVE-2026-23392

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix
  • Review and audit nftables flowtable configurations on affected systems
  • Restrict CAP_NET_ADMIN capabilities to only trusted users and processes
  • Consider temporarily disabling flowtable functionality if not required until patching is complete

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix ensures that synchronize_rcu() is called after unregistering hooks in the error path before releasing the flowtable memory.

Multiple patch commits are available for different kernel branches:

  • Kernel Patch Change 7e3955b
  • Kernel Patch Change adee3436
  • Kernel Patch Change c8092edb
  • Kernel Patch Change d2632de
  • Kernel Patch Change d73f4b5
  • Kernel Patch Change e78a2dcc

Workarounds

  • Limit access to nftables configuration to only essential administrative users
  • Avoid using flowtable features in production environments until the kernel is patched
  • Implement network namespace isolation to reduce the attack surface for netfilter manipulation
  • Use SELinux or AppArmor policies to restrict processes that can modify netfilter rules
bash
# Restrict nftables access to root only
chmod 700 /usr/sbin/nft

# Audit nftables configuration changes
auditctl -w /usr/sbin/nft -p x -k nftables_changes

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 Change 7e3955b

  • Kernel Patch Change adee3436

  • Kernel Patch Change c8092edb

  • Kernel Patch Change d2632de

  • Kernel Patch Change d73f4b5

  • Kernel Patch Change e78a2dcc
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

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