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

CVE-2026-23385: Linux Kernel Netfilter DoS Vulnerability

CVE-2026-23385 is a denial of service flaw in the Linux kernel's netfilter nf_tables component that triggers memory allocation failures. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23385 Overview

A memory management vulnerability has been identified in the Linux kernel's netfilter nf_tables subsystem. The vulnerability was discovered through Syzbot fuzzing with fault injection, which triggered a failing memory allocation using GFP_KERNEL that results in a kernel warning (WARN splat). The issue occurs in the nft_map_deactivate function within net/netfilter/nf_tables_api.c when handling set operations during table release.

The vulnerability affects the set cloning mechanism during flush operations, where improper memory handling can lead to system instability and potential denial of service conditions when processing netfilter table operations.

Critical Impact

Local attackers with sufficient privileges to interact with netfilter tables may trigger kernel warnings and potential system instability through crafted netlink operations that cause memory allocation failures during set deactivation.

Affected Products

  • Linux kernel (versions with vulnerable nf_tables implementation)
  • Systems running netfilter/nftables for packet filtering
  • Linux-based network appliances and firewalls using nf_tables

Discovery Timeline

  • March 25, 2026 - CVE CVE-2026-23385 published to NVD
  • March 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23385

Vulnerability Analysis

The vulnerability resides in the Linux kernel's netfilter nf_tables API, specifically in the set management code. When a netlink socket is released and triggers nft_rcv_nl_event, the kernel attempts to release associated tables through __nft_release_table. During this process, the nft_map_deactivate function may encounter memory allocation failures when attempting to clone sets.

The root issue is that set cloning was being performed unconditionally during various iteration operations, including during table deletion. When a GFP_KERNEL allocation fails under memory pressure or fault injection conditions, the code path triggers a WARN at line 845 of nf_tables_api.c. The call trace shows the vulnerability path from sock_close through netlink_release to the problematic nft_map_deactivate function.

Root Cause

The vulnerability stems from overly aggressive set cloning behavior in the nf_tables implementation. Prior to the fix, the code would attempt to clone sets during various iteration operations, including when sets were being deleted or deactivated. This design was problematic because:

  1. Cloning sets requires memory allocation with GFP_KERNEL
  2. Memory allocation failures during deactivation lead to inconsistent state handling
  3. Bound anonymous sets and sets being deleted do not need to be cloned

The fix introduces a new iteration type NFT_ITER_UPDATE_CLONE that restricts set cloning to only the flush set command during the preparation phase. The rbtree and pipapo backends were updated to only perform cloning when this specific iteration type is used.

Attack Vector

The vulnerability can be triggered by local users with privileges to manipulate netfilter tables. The attack path involves creating netlink sockets and configuring nf_tables rules, then triggering conditions that lead to memory allocation failures during set deactivation. While the immediate impact is a kernel warning, repeated exploitation could lead to resource exhaustion or system instability.

The vulnerability is exercised through the following code path:

  • sock_close → netlink_release → blocking_notifier_call_chain → nft_rcv_nl_event → __nft_release_table → nft_map_deactivate

When memory allocation fails during set iteration in nft_map_deactivate, the error condition is not gracefully handled, resulting in the observed WARN splat. The fix modifies the pipapo backend to use existing set clones when available, otherwise falling back to the existing set representation, eliminating the need to clone sets during deletion.

Detection Methods for CVE-2026-23385

Indicators of Compromise

  • Kernel warning messages containing nft_map_deactivate in system logs
  • WARN splats referencing net/netfilter/nf_tables_api.c:845
  • Unusual memory pressure or allocation failures related to netfilter operations
  • Repeated netlink socket creation and teardown activity

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for WARN messages from nf_tables_api.c
  • Deploy kernel tracing on nft_map_deactivate function for anomalous invocation patterns
  • Implement audit rules for netfilter table manipulation operations
  • Use fault injection detection to identify potential exploitation attempts

Monitoring Recommendations

  • Enable kernel auditing for netlink_release and related socket operations
  • Configure alerting on kernel WARN messages in netfilter subsystem components
  • Monitor system memory utilization for unusual patterns during netfilter operations
  • Review netfilter rule changes and table modifications for unauthorized activity

How to Mitigate CVE-2026-23385

Immediate Actions Required

  • Apply the kernel patches from the stable kernel tree immediately
  • Review systems for signs of exploitation by checking kernel logs for related warnings
  • Consider temporarily limiting access to netfilter configuration if patching is delayed
  • Ensure systems have adequate memory to reduce likelihood of allocation failures

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix restricts set cloning to the flush set command only, introducing NFT_ITER_UPDATE_CLONE for this specific purpose. Multiple commits have been published to the stable kernel tree:

  • Kernel Git Commit 9154945
  • Kernel Git Commit b7f6728
  • Kernel Git Commit fb7fb40

Workarounds

  • Restrict access to netfilter/nftables configuration to trusted administrators only
  • Implement resource limits on netlink socket operations where possible
  • Deploy security modules (SELinux/AppArmor) to limit netfilter manipulation capabilities
  • Monitor and alert on kernel warnings to detect potential exploitation attempts
bash
# Configuration example
# Restrict nftables access to root only
chmod 700 /usr/sbin/nft

# Enable kernel audit logging for netlink operations
auditctl -a always,exit -F arch=b64 -S socket -F a0=16 -k netlink_monitor

# Check kernel version for patch status
uname -r

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 9154945

  • Kernel Git Commit b7f6728

  • Kernel Git Commit fb7fb40
  • Related CVEs
  • CVE-2026-23398: Linux Kernel ICMP DoS Vulnerability

  • CVE-2026-23312: Linux Kernel Kaweth Driver DoS Vulnerability

  • CVE-2026-23382: Linux Kernel HID Driver DoS Vulnerability

  • CVE-2026-23379: Linux Kernel ETS Scheduler DOS 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