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

CVE-2026-23016: Linux Kernel Privilege Escalation Flaw

CVE-2026-23016 is a privilege escalation vulnerability in the Linux kernel related to fraglist conntrack reference handling. This flaw can prevent proper cleanup and cause system hangs. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-23016 Overview

CVE-2026-23016 is a vulnerability in the Linux kernel's network fragment reassembly subsystem that results in leaked conntrack references. The issue occurs when defragmented SKBs (socket buffers) retain nf_conn references through their fragment lists, which prevents proper conntrack cleanup during network namespace teardown. This can cause conntrack cleanup operations to hang indefinitely, affecting system stability and potentially leading to denial of service conditions.

Critical Impact

This vulnerability can cause conntrack cleanup operations to block for extended periods (60+ seconds), potentially leading to system instability and denial of service when network namespaces are being cleaned up.

Affected Products

  • Linux kernel (versions with udp: use skb_attempt_defer_free() commit 6471658dc66c)
  • Linux kernel with nf_conntrack enabled
  • Systems using IPv4/IPv6 packet defragmentation with conntrack

Discovery Timeline

  • 2026-01-31 - CVE CVE-2026-23016 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-23016

Vulnerability Analysis

The vulnerability stems from improper handling of conntrack references in the Linux kernel's network fragment reassembly code. When fragmented packets are processed through the defragmentation engine, the resulting reassembled SKBs retain nf_conn references from their fragment lists. The function skb_release_head_state() does not follow the fragment list chain, leaving conntrack references attached to fragments that may be queued in per-CPU freelists.

The problematic execution path involves multiple stages of packet processing where conntrack references accumulate but are not properly released. While the TCP and UDP stacks call nf_reset_ct() before placing SKBs on socket queues, this function does not iterate through fragment list SKBs, leaving references orphaned.

Root Cause

The root cause is that skb_release_head_state() does not traverse the fragment list (frag_list) when releasing SKB state. This means when reassembled packets containing fragment lists are freed or deferred, the conntrack references held by individual fragments in the list are not properly decremented.

The issue became reproducible after commit 6471658dc66c which introduced skb_attempt_defer_free() for UDP processing. However, the underlying problem affects any code path where reassembled SKBs with fragment lists retain conntrack references, including TCP when PMTU discovery is disabled.

Attack Vector

The vulnerability can be triggered through the following execution path:

  1. A network namespace emits fragmented packets
  2. nf_defrag_v6_hook reassembles packets in the output hook
  3. Reassembled SKB is tracked and owns an nf_conn reference
  4. ip6_output refragments the packets
  5. Refragmented packets inherit nf_conn references via ip6_copy_metadata()
  6. On input path, nf_defrag_v6_hook skips defragmentation since fragments already have skb->nf_conn attached
  7. SKBs are reassembled via ipv6_frag_rcv()
  8. skb_consume_udp calls skb_attempt_defer_free(), placing SKB in per-CPU freelist while retaining nf_conn reference

The vulnerability is reproducible using the ip_defrag.sh selftest with net.core.skb_defer_max=0 disabled. Setting this value to 0 prevents the hang by avoiding the per-CPU freelist code path.

Detection Methods for CVE-2026-23016

Indicators of Compromise

  • Kernel warning messages containing conntrack cleanup blocked for 60s in system logs
  • Warnings originating from net/netfilter/nf_conntrack_core.c:2512 or similar locations
  • System hangs or delays during network namespace cleanup operations
  • Increased memory consumption in conntrack tables that doesn't decrease after connection termination

Detection Strategies

  • Monitor kernel logs for nf_conntrack_cleanup_net_list() warnings using log aggregation tools
  • Implement kernel tracing on skb_attempt_defer_free() calls to identify orphaned conntrack references
  • Track conntrack table growth patterns for anomalous reference accumulation
  • Use eBPF probes to monitor fragmentation and reassembly operations in production environments

Monitoring Recommendations

  • Configure alerting on kernel warning messages related to conntrack cleanup timeouts
  • Monitor /proc/net/nf_conntrack for unexpected reference count growth
  • Track network namespace creation and destruction events for cleanup delays
  • Implement periodic conntrack table auditing to identify leaked references

How to Mitigate CVE-2026-23016

Immediate Actions Required

  • Apply the available kernel patches from the official Linux kernel repositories
  • Consider setting net.core.skb_defer_max=0 as a temporary mitigation to avoid the per-CPU freelist code path
  • Schedule maintenance windows for kernel updates on affected systems
  • Monitor systems for conntrack cleanup warnings until patches are applied

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix drops nf_conn entries when fragments are placed in the defrag queue, while keeping the nf_conn entry of the first fragment (offset 0) so that reassembled SKBs retain the entry for the TX path.

Patches are available through the official kernel git repositories:

  • Kernel Git Commit 088ca99dbb03
  • Kernel Git Commit 2ef02ac38d3c

Workarounds

  • Set net.core.skb_defer_max=0 to disable the per-CPU freelist behavior that triggers the issue
  • Avoid frequent network namespace creation and destruction if possible until patched
  • Consider disabling nf_conntrack if not required for your network security policy
  • Implement network segmentation to reduce fragmented packet processing load
bash
# Configuration example - temporary workaround
# Disable per-CPU freelist behavior to prevent conntrack reference leaks
sysctl -w net.core.skb_defer_max=0

# Make persistent across reboots
echo "net.core.skb_defer_max=0" >> /etc/sysctl.conf

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 Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-31411: Linux Kernel Privilege Escalation Flaw

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

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

  • CVE-2026-23437: Linux Kernel Privilege Escalation Flaw
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