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

CVE-2026-23399: Linux Kernel Memory Leak Vulnerability

CVE-2026-23399 is a memory leak flaw in the Linux kernel's nf_tables nft_dynset component that occurs when cloning stateful expressions fails. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-23399 Overview

A memory leak vulnerability has been identified in the Linux kernel's nf_tables subsystem, specifically within the nft_dynset component. The flaw occurs when cloning stateful expressions in dynamic set elements fails during memory allocation. If cloning the second stateful expression via GFP_ATOMIC fails, the first stateful expression remains allocated without being properly released, resulting in a memory leak.

This vulnerability affects the netfilter framework's nftables implementation, which is responsible for packet filtering, network address translation, and other packet mangling operations in the Linux kernel.

Critical Impact

Persistent memory leaks in the kernel's netfilter subsystem can lead to system resource exhaustion and potential denial of service conditions on affected Linux systems handling network traffic.

Affected Products

  • Linux kernel with nf_tables module enabled
  • Systems using nftables for packet filtering and firewall rules
  • Linux distributions with vulnerable kernel versions

Discovery Timeline

  • 2026-03-28 - CVE CVE-2026-23399 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-23399

Vulnerability Analysis

The vulnerability resides in the error handling path of the nft_dynset_new() function within the nf_tables subsystem. When creating dynamic set elements with multiple stateful expressions, the kernel allocates memory for each expression clone using GFP_ATOMIC allocation flags. The issue occurs when the allocation for a subsequent expression fails while a previously cloned expression has already been successfully allocated.

The leaked memory manifests as unreferenced per-CPU allocated objects. The kernel backtrace from the memory leak detection reveals the allocation chain: pcpu_alloc_noprof → nft_counter_clone → nft_expr_clone → nft_dynset_new → nft_rhash_update → nft_dynset_eval → nft_do_chain. This indicates the leak occurs during packet processing when dynamic sets are being updated with new elements containing counter expressions.

Root Cause

The root cause is improper error handling in the nft_dynset component. When multiple stateful expressions need to be cloned for a new dynamic set element, the code fails to properly clean up already-allocated resources when a subsequent allocation fails. Specifically, if the second expression clone fails with GFP_ATOMIC, the first cloned expression is not freed, leaving orphaned memory in the kernel's per-CPU allocation pool.

Attack Vector

An attacker with the ability to generate network traffic that triggers nftables rule evaluation with dynamic sets containing multiple stateful expressions (such as counters) could potentially exploit this vulnerability. By causing repeated allocation failures through high network load or memory pressure scenarios, an attacker could gradually exhaust system memory through accumulated leaks.

The vulnerability is triggered through the following chain:

  1. Network packets are processed by nftables rules containing dynamic sets
  2. The nft_dynset_eval() function evaluates the dynamic set operation
  3. During element update via nft_rhash_update(), new elements are created
  4. Expression cloning in nft_dynset_new() fails for a subsequent expression
  5. Previously allocated expressions are leaked

Detection Methods for CVE-2026-23399

Indicators of Compromise

  • Gradual increase in kernel memory usage over time, particularly in per-CPU allocations
  • KMEMLEAK reports showing unreferenced objects with backtraces pointing to nft_counter_clone or nft_expr_clone
  • System logs indicating memory allocation failures in the nf_tables module
  • Performance degradation in network packet processing under sustained traffic

Detection Strategies

  • Enable kernel memory leak detection (CONFIG_DEBUG_KMEMLEAK) to identify unreferenced objects in nf_tables
  • Monitor /proc/meminfo for unexpected growth in kernel memory allocations
  • Implement alerting on dmesg entries containing nf_tables allocation failures
  • Use kernel tracing tools to monitor nft_dynset_new() error paths

Monitoring Recommendations

  • Deploy memory monitoring solutions to track kernel per-CPU allocation pools
  • Configure syslog forwarding to capture kernel memory warnings
  • Establish baseline memory usage for systems running nftables firewalls
  • Implement automated alerting when kernel memory consumption exceeds normal thresholds

How to Mitigate CVE-2026-23399

Immediate Actions Required

  • Apply the latest kernel patches that address this memory leak vulnerability
  • Monitor affected systems for signs of memory exhaustion
  • Consider temporarily reducing complexity of nftables rules with multiple stateful expressions if patches cannot be immediately applied
  • Schedule maintenance windows for kernel updates on production systems

Patch Information

The Linux kernel maintainers have released fixes for this vulnerability across multiple stable kernel branches. The patches ensure proper cleanup of cloned stateful expressions when allocation failures occur in the error path. The following commits address this issue:

  • Kernel Git Commit 0548a13
  • Kernel Git Commit 31641c6
  • Kernel Git Commit c88a9fd
  • Kernel Git Commit d135487

Workarounds

  • Reduce the number of stateful expressions (counters, rate limiters) in dynamic set configurations where possible
  • Implement periodic system reboots on affected systems as a temporary measure to clear accumulated memory leaks
  • Monitor memory usage closely and restart systems proactively before memory exhaustion occurs
  • Consider using alternative firewall configurations that do not rely heavily on dynamic sets with multiple stateful expressions
bash
# Check current kernel version
uname -r

# Verify nf_tables module status
lsmod | grep nf_tables

# Monitor kernel memory usage
cat /proc/meminfo | grep -E "(MemFree|Slab|SUnreclaim)"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 31641c6

  • Kernel Git Commit c88a9fd

  • Kernel Git Commit d135487
  • Related CVEs
  • CVE-2026-23416: Linux Kernel VMA Merge Vulnerability

  • CVE-2026-23414: Linux Kernel TLS Memory Leak Vulnerability

  • CVE-2026-23403: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23324: Linux Kernel USB URB Anchor Vulnerability
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