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

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

CVE-2026-43084 is a use-after-free vulnerability in the Linux kernel's netfilter nfnetlink_queue component that can cause system crashes. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43084 Overview

CVE-2026-43084 is a use-after-free vulnerability in the Linux kernel's nfnetlink_queue netfilter subsystem. The flaw stems from sharing a global hash table across all queues, allowing a parallel CPU to encounter an nf_queue_entry structure that has already been released via kfree. KASAN reports the issue as a slab-use-after-free triggered through nfqnl_recv_verdict. The kernel maintainers resolved the issue by making the hash table per-queue rather than global. Multiple stable kernel branches received fixes through commits 22730cb, 41e3652, 936206e, and 9e5ebef.

Critical Impact

Use-after-free conditions in kernel netfilter code can lead to memory corruption, kernel panic, or local privilege escalation depending on heap layout and exploitation primitives.

Affected Products

  • Linux kernel versions including the nfnetlink_queue netfilter module prior to the listed stable commits
  • Distributions shipping vulnerable upstream kernels with CONFIG_NETFILTER_NETLINK_QUEUE enabled
  • Systems using userspace queueing for packet inspection (for example, NFQUEUE-based IDS/IPS frameworks)

Discovery Timeline

  • 2026-05-06 - CVE-2026-43084 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43084

Vulnerability Analysis

The nfnetlink_queue subsystem queues network packets to userspace for verdict decisions. Each queued packet is tracked through an nf_queue_entry structure stored in a hash table. The pre-patch implementation shared one global hash table across all queues. When a verdict arrived through nfqnl_recv_verdict, the kernel walked this shared structure to locate the matching entry.

The race condition arises when one CPU frees an nf_queue_entry via kfree while another CPU is still traversing the global list. The freed memory remains reachable through the hash, producing a slab-use-after-free condition. KASAN flagged the issue inside nfqnl_recv_verdict+0x11ac/0x15e0 during normal verdict processing.

Root Cause

The root cause is improper synchronization of object lifetime against concurrent readers in a shared data structure. Memory is released using kfree rather than a deferred mechanism such as kfree_rcu, but readers walking the hash do not hold references that prevent the free. Because the same hash table services every queue, the contention surface scales with the number of active queues.

Attack Vector

A local attacker with the ability to create netfilter queues and submit verdicts can race verdict processing against entry teardown. Triggering the race requires concurrent operations against nfnetlink_queue from multiple CPUs. Successful exploitation corrupts kernel slab memory, with potential outcomes ranging from denial of service through kernel panic to memory corruption useful for privilege escalation.

No public exploit code is available. See the upstream fix in Kernel Git Commit 22730cb for the structural change that converts the hash table to per-queue allocation.

Detection Methods for CVE-2026-43084

Indicators of Compromise

  • KASAN reports referencing slab-use-after-free in nfqnl_recv_verdict in kernel logs or dmesg output
  • Unexpected kernel panics or oops messages originating from the nfnetlink_queue module
  • Crash signatures including the call path nfnetlink_rcv_msg followed by nfqnl_recv_verdict

Detection Strategies

  • Audit running kernel versions against the patched stable commits 22730cb, 41e3652, 936206e, and 9e5ebef
  • Monitor for unprivileged or container workloads that hold CAP_NET_ADMIN and interact with NFQUEUE targets
  • Correlate kernel ring buffer crashes with workloads using userspace packet queueing frameworks

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a central logging pipeline and alert on KASAN or oops signatures
  • Track loaded kernel modules and flag hosts where nfnetlink_queue is active on unpatched kernels
  • Establish baseline crash rates for netfilter components and investigate deviations

How to Mitigate CVE-2026-43084

Immediate Actions Required

  • Apply the upstream stable kernel updates that include the per-queue hash table fix and reboot affected hosts
  • Inventory systems using NFQUEUE and prioritize patching for multi-tenant or container hosts where local users can trigger the race
  • Restrict CAP_NET_ADMIN to trusted processes to limit who can create netfilter queues

Patch Information

The fix converts the global hash table to a per-queue structure, eliminating cross-queue lifetime conflicts. Apply the kernel update containing the relevant commit for your stable branch: Kernel Git Commit 22730cb, Kernel Git Commit 41e3652, Kernel Git Commit 936206e, or Kernel Git Commit 9e5ebef.

Workarounds

  • Unload the nfnetlink_queue module on systems that do not require userspace packet queueing
  • Disable CONFIG_NETFILTER_NETLINK_QUEUE in custom kernel builds where the feature is unused
  • Remove NFQUEUE rules from active iptables, nftables, or ebtables configurations until patches are deployed
bash
# Configuration example
# Check if nfnetlink_queue is loaded
lsmod | grep nfnetlink_queue

# Unload the module if no NFQUEUE rules are active
sudo modprobe -r nfnetlink_queue

# Blacklist the module to prevent autoload
echo 'blacklist nfnetlink_queue' | sudo tee /etc/modprobe.d/blacklist-nfqueue.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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 22730cb

  • Kernel Git Commit 41e3652

  • Kernel Git Commit 936206e

  • Kernel Git Commit 9e5ebef
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43056: Linux Kernel Use-After-Free Vulnerability
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