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

CVE-2026-23272: Linux Kernel Privilege Escalation Flaw

CVE-2026-23272 is a privilege escalation vulnerability in the Linux kernel's netfilter nf_tables component affecting RCU synchronization. This article covers technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2026-23272 Overview

CVE-2026-23272 is a race condition vulnerability in the Linux kernel's netfilter subsystem, specifically within the nf_tables set element handling code. When an nf_tables set reaches its maximum capacity, a new element can be published and then removed without waiting for the Read-Copy-Update (RCU) grace period. An RCU reader may already be traversing the freed element, leading to memory safety violations. The flaw affects local attackers with the ability to issue netfilter configuration commands and impacts confidentiality, integrity, and availability of the host system.

Critical Impact

A local attacker with CAP_NET_ADMIN in a user or network namespace can exploit this race condition to corrupt kernel memory and potentially escalate privileges on affected Linux systems.

Affected Products

  • Linux kernel versions containing the nf_tables set element insertion logic prior to the upstream fix
  • Distributions shipping the affected kernel revisions referenced by commits 6826131c, ccb8c8f3, and def602e4
  • Systems where unprivileged user namespaces are enabled and nf_tables is reachable

Discovery Timeline

  • 2026-03-20 - CVE-2026-23272 published to the National Vulnerability Database
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-23272

Vulnerability Analysis

The vulnerability resides in the netfilter nf_tables subsystem, which manages packet filtering rule sets in the Linux kernel. Sets in nf_tables are collections of elements protected by RCU for lockless read access. The flaw triggers when a transaction attempts to insert a new element into a set that has already reached its nelems limit.

In the buggy code path, the element is published into the set's data structure and then removed without an intervening synchronize_rcu() call. RCU readers walking the set concurrently may still hold references to the element that was just unpublished. The result is a use-after-free condition on memory that an RCU reader assumes is live.

The fix unconditionally increments set->nelems before insertion and adds the element to the transaction even when the set is full. A new set_full flag triggers -ENFILE to be returned, and the abort path safely unwinds the set to its previous state through the normal RCU-aware transaction rollback.

Root Cause

The root cause is improper RCU synchronization during error handling in the set element insertion path. The original error path treated a full set as a fast-fail condition and removed the freshly published element synchronously. This violates the RCU contract, which requires a grace period between publishing and freeing any object that concurrent readers can observe.

Attack Vector

Exploitation requires local access and the ability to manipulate nf_tables configurations, typically through the CAP_NET_ADMIN capability. On distributions with unprivileged user namespaces enabled, a local unprivileged attacker can obtain this capability inside a namespace. The attacker crafts a batch transaction that adds elements to an nf_tables set already at capacity while a parallel thread performs lookups against the same set, racing the publish-and-remove sequence against an active RCU reader.

No verified public proof-of-concept code is available. See the upstream commits 6826131c, ccb8c8f3, and def602e4 for the authoritative technical fix.

Detection Methods for CVE-2026-23272

Indicators of Compromise

  • Kernel oops or panic messages referencing nf_tables, nft_set, or RCU-related stack traces in dmesg and /var/log/kern.log
  • Unexpected -ENFILE return codes during nft batch operations correlated with high-frequency set updates
  • Unprivileged processes invoking nft or setsockopt with NFNL_SUBSYS_NFTABLES from inside user namespaces

Detection Strategies

  • Audit nf_tables netlink traffic for batch transactions that repeatedly attempt to insert elements into saturated sets
  • Monitor for crashes or KASAN reports in kernels with debug instrumentation enabled
  • Inspect process lineage for unprivileged binaries spawning user namespaces and invoking netfilter configuration syscalls

Monitoring Recommendations

  • Enable kernel auditing (auditd) rules for the setsockopt and sendmsg syscalls targeting AF_NETLINK with NETLINK_NETFILTER
  • Collect kernel ring buffer logs centrally and alert on BUG:, WARNING:, or general protection fault entries mentioning nft_
  • Track user namespace creation events through unshare and clone syscall telemetry

How to Mitigate CVE-2026-23272

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced by commits 6826131c, ccb8c8f3, and def602e4 or upgrade to a distribution kernel that includes them
  • Disable unprivileged user namespaces where they are not required by setting kernel.unprivileged_userns_clone=0 or the equivalent sysctl on your distribution
  • Restrict access to the nf_tables netlink interface to trusted administrators only

Patch Information

The fix is committed to the upstream Linux kernel stable tree. Refer to Linux Kernel Commit 6826131c, Linux Kernel Commit ccb8c8f3, and Linux Kernel Commit def602e4. Distribution maintainers will backport these changes into supported stable branches. Verify your running kernel version against your vendor's security advisory tracker.

Workarounds

  • Set kernel.unprivileged_userns_clone=0 to prevent unprivileged users from acquiring CAP_NET_ADMIN inside namespaces
  • Load Linux Security Module (LSM) policies such as SELinux or AppArmor profiles that block unprivileged access to nf_tables netlink sockets
  • Reduce the practical attack surface by enforcing seccomp filters that block unshare(CLONE_NEWUSER) for untrusted workloads
bash
# Configuration example
sysctl -w kernel.unprivileged_userns_clone=0
echo 'kernel.unprivileged_userns_clone=0' >> /etc/sysctl.d/99-cve-2026-23272.conf
sysctl -p /etc/sysctl.d/99-cve-2026-23272.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

  • 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
  • Linux Kernel Commit #6826131

  • Linux Kernel Commit #ccb8c8f3

  • Linux Kernel Commit #def602e4
  • Related CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

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

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

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