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

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

CVE-2026-23458 is a use-after-free flaw in the Linux kernel's netfilter ctnetlink component that can cause memory corruption. This article covers the technical details, affected versions, impact, and mitigation.

Updated: May 15, 2026

CVE-2026-23458 Overview

CVE-2026-23458 is a use-after-free vulnerability in the Linux kernel's netfilter ctnetlink subsystem. The flaw resides in the ctnetlink_dump_exp_ct() function, which stores a conntrack pointer in cb->data for the netlink dump callback but releases the conntrack reference immediately after calling netlink_dump_start(). When a dump spans multiple rounds, a subsequent recvmsg() call triggers the dump callback, which dereferences the freed conntrack via nfct_help(ct), producing a use-after-free on ct->ext.

Critical Impact

A local user with network namespace access can trigger memory corruption in the kernel via crafted netlink dump operations, leading to potential privilege escalation or denial of service.

Affected Products

  • Linux kernel (mainline) — netfilter / ctnetlink subsystem
  • Distribution kernels built from affected upstream commits
  • Systems exposing NFNL_SUBSYS_CTNETLINK_EXP to unprivileged user namespaces

Discovery Timeline

  • 2026-04-03 - CVE-2026-23458 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-23458

Vulnerability Analysis

The vulnerability is a use-after-free [CWE-416] in the connection-tracking netlink (ctnetlink) interface. ctnetlink_dump_exp_ct() initiates a netlink dump using a netlink_dump_control structure that lacks .start and .done callbacks. The function passes a nf_conn pointer through cb->data but drops its reference count before the dump completes.

Netlink dumps can be multi-round operations. The kernel preserves cb->data across rounds but does not preserve the reference. When userspace issues the next recvmsg(), the dump resumes and dereferences a conntrack object that has already been freed via RCU. The KASAN report shows the read occurring in ctnetlink_exp_ct_dump_table() at offset 0x4f, where nfct_help(ct) accesses ct->ext.

Root Cause

The root cause is asymmetric reference-counting around the netlink dump lifecycle. Other dump handlers in the same file, such as ctnetlink_get_conntrack, correctly install .start and .done callbacks that acquire and release the conntrack reference for the duration of the dump. ctnetlink_dump_exp_ct() omitted these handlers, so the conntrack object can be freed by slab_free_after_rcu_debug while a dump round is still pending in user space.

Attack Vector

Exploitation requires local access and the ability to send netlink messages to NFNL_SUBSYS_CTNETLINK_EXP. An attacker creates a conntrack entry, issues an expectation dump request, and arranges for the dump to span multiple recvmsg() rounds. Between rounds the conntrack is freed and its slab can be reallocated to attacker-controlled data. The next dump round reads through nfct_help(ct) into the reallocated memory, producing controlled out-of-bounds dereferences that can be shaped into privilege escalation on systems where unprivileged user namespaces are enabled.

The vulnerability is described in prose because no public proof-of-concept exploit is available. Refer to the upstream fixes in Kernel Commit 04c8907 and Kernel Commit f04cc86 for the exact source-level changes.

Detection Methods for CVE-2026-23458

Indicators of Compromise

  • Kernel oops or KASAN reports referencing ctnetlink_exp_ct_dump_table or nfct_help in the call trace.
  • Unexpected slab-use-after-free messages in dmesg involving nf_conntrack slab caches.
  • Processes issuing repeated NFNL_MSG_EXP_GET netlink requests with large dump windows from non-root user namespaces.

Detection Strategies

  • Audit auditd and eBPF telemetry for sendmsg/recvmsg system calls targeting NETLINK_NETFILTER from unprivileged processes.
  • Enable CONFIG_KASAN in test and pre-production kernels to surface the use-after-free deterministically.
  • Alert on kernel crashes that include ctnetlink_exp_ct_dump_table+0x4f in the faulting program counter.

Monitoring Recommendations

  • Centralize kernel logs and watch for KASAN, oops, and panic signatures referencing netfilter symbols.
  • Track processes that create user namespaces and then open AF_NETLINK sockets with NETLINK_NETFILTER protocol.
  • Monitor for repeated short recvmsg() reads on netfilter netlink sockets, consistent with multi-round dump abuse.

How to Mitigate CVE-2026-23458

Immediate Actions Required

  • Apply the upstream kernel patches listed in the references and rebuild affected kernels.
  • Where patching is not yet possible, restrict access to CAP_NET_ADMIN and disable unprivileged user namespaces via kernel.unprivileged_userns_clone=0.
  • Inventory all Linux hosts and container hosts running affected kernel versions and prioritize remediation on multi-tenant systems.

Patch Information

The fix adds .start and .done callbacks to the netlink_dump_control used by ctnetlink_dump_exp_ct(). These callbacks hold a conntrack reference for the lifetime of the dump and release it when the dump completes. The nfct_help() call is also moved after the cb->args[0] early-return check to avoid touching ct->ext unnecessarily. The fix is distributed across stable trees in commits 04c8907, 5cb81ee, 9821b47, bdf2724, cd541f1, d8cd0ef, f025171, and f04cc86.

Workarounds

  • Disable unprivileged user namespaces with sysctl -w kernel.unprivileged_userns_clone=0 on distributions that expose this toggle.
  • Block or restrict NETLINK_NETFILTER access from untrusted workloads using seccomp profiles or container runtime policies.
  • Unload or blacklist nf_conntrack_netlink on hosts that do not require conntrack management from user space.
bash
# Configuration example
# Disable unprivileged user namespaces to limit local attack surface
sysctl -w kernel.unprivileged_userns_clone=0
echo 'kernel.unprivileged_userns_clone=0' >> /etc/sysctl.d/99-hardening.conf

# Restrict the nf_conntrack_netlink module on hosts that do not need it
echo 'install nf_conntrack_netlink /bin/true' > /etc/modprobe.d/blacklist-ctnetlink.conf

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Commit 04c8907

  • Kernel Commit 5cb81ee

  • Kernel Commit 9821b47

  • Kernel Commit bdf2724

  • Kernel Commit cd541f1

  • Kernel Commit d8cd0ef

  • Kernel Commit f025171

  • Kernel Commit f04cc86
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43335: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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