A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43024

CVE-2026-43024: Linux Kernel Netfilter Queue Vulnerability

CVE-2026-43024 is a netfilter vulnerability in the Linux kernel affecting nf_tables handling of NF_QUEUE verdicts. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-43024 Overview

CVE-2026-43024 is a Linux kernel vulnerability in the netfilter subsystem, specifically within nf_tables. The flaw involves the handling of immediate NF_QUEUE verdicts emitted directly from rules. The userspace nft tooling never emits an immediate NF_QUEUE verdict, yet the kernel previously accepted them. The arp family does not provide queue support, but an immediate NF_QUEUE verdict remained reachable through this path. The kernel patch globally rejects immediate NF_QUEUE verdicts to close this inconsistent state.

Critical Impact

An immediate NF_QUEUE verdict reaching a netfilter family without queue support, such as arp, can trigger unexpected kernel behavior in nf_tables packet handling.

Affected Products

  • Linux kernel nf_tables netfilter subsystem
  • Multiple stable kernel branches receiving the backported fix
  • Systems using nftables rulesets that include immediate verdicts

Discovery Timeline

  • 2026-05-01 - CVE-2026-43024 published to NVD
  • 2026-05-01 - Last updated in NVD database

Technical Details for CVE-2026-43024

Vulnerability Analysis

The vulnerability resides in the Linux kernel netfilternf_tables framework. nft_queue is the expression that delivers packets to userspace via the NF_QUEUE verdict. Userspace nftables always uses nft_queue to issue this verdict. The kernel additionally accepts an immediate verdict carrying NF_QUEUE directly from a rule, even though no userspace tool emits this construction.

The issue becomes consequential in the arp family. The arp netfilter family does not implement queue handling. Despite this, an attacker or misconfigured ruleset crafting an immediate NF_QUEUE verdict could reach a code path that the family does not support. This represents a kernel-level input validation gap [CWE-20] in verdict acceptance.

The upstream fix globally rejects immediate NF_QUEUE verdicts during rule loading, regardless of the family. This eliminates the inconsistent state where the kernel accepted a verdict it could not safely service.

Root Cause

The root cause is missing validation in the immediate verdict acceptance path of nf_tables. The kernel did not reject NF_QUEUE verdicts emitted via nft_immediate, even for families lacking queue support. The fix introduces a check that returns an error when an immediate verdict carries NF_QUEUE.

Attack Vector

An entity capable of loading nf_tables rulesets, typically requiring CAP_NET_ADMIN within a network namespace, could construct a ruleset using an immediate NF_QUEUE verdict in the arp family or similar unsupported context. Local unprivileged users do not have direct access to this interface without namespace privileges. The vulnerability is not network-reachable.

The vulnerability manifests through the nft_immediate expression accepting NF_QUEUE as a verdict value. See the kernel commits referenced below for the validation logic added during remediation.

Detection Methods for CVE-2026-43024

Indicators of Compromise

  • Kernel logs showing unexpected nf_tables errors or warnings during ruleset loading
  • Audit events for nftables rule installation by non-administrative processes
  • Loading of nf_tables rules with immediate verdicts referencing queue numbers in the arp family

Detection Strategies

  • Inventory running kernel versions across the fleet and compare against fixed stable releases referenced by the kernel.org commits
  • Audit nftables rulesets in production for immediate NF_QUEUE verdicts using nft list ruleset
  • Monitor for processes invoking nft or the NETLINK_NETFILTER socket family from unexpected user contexts

Monitoring Recommendations

  • Enable kernel auditing on netlink rule changes via auditd rules targeting NETLINK_NETFILTER
  • Track creation of new network namespaces with CAP_NET_ADMIN granted to container workloads
  • Centralize kernel dmesg output and netfilter subsystem messages for review

How to Mitigate CVE-2026-43024

Immediate Actions Required

  • Apply vendor-provided kernel updates that include the netfilter nf_tables immediate NF_QUEUE verdict rejection patch
  • Identify any rulesets that rely on immediate NF_QUEUE verdicts and migrate them to use nft_queue syntax
  • Restrict CAP_NET_ADMIN and unprivileged user namespace access where not required

Patch Information

The fix has been merged into multiple stable kernel branches. Reference commits include 17dc5d5a935c, 2f7f825a548b, 42a47f4b1b76, 4b12a3cc3f07, 68390437a998, da107398cbd4, f140593901724, and f710691be163. Apply distribution kernel updates that incorporate these commits.

Workarounds

  • Disable or unload the nf_tables module on systems that do not require it using modprobe -r nf_tables
  • Restrict creation of unprivileged user namespaces by setting kernel.unprivileged_userns_clone=0 where supported
  • Audit and remove any custom rulesets that emit immediate NF_QUEUE verdicts pending kernel patch deployment
bash
# Disable unprivileged user namespaces to limit nf_tables ruleset loading
sysctl -w kernel.unprivileged_userns_clone=0

# Verify current kernel version against fixed stable releases
uname -r

# Inspect existing nftables rulesets for immediate queue verdicts
nft list ruleset | grep -i queue

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Stable Commit Update 1

  • Kernel Stable Commit Update 2

  • Kernel Stable Commit Update 3

  • Kernel Stable Commit Update 4

  • Kernel Stable Commit Update 5

  • Kernel Stable Commit Update 6

  • Kernel Stable Commit Update 7

  • Kernel Stable Commit Update 8
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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