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

CVE-2026-43454: Linux Kernel Netfilter Hook Vulnerability

CVE-2026-43454 is a netfilter vulnerability in the Linux kernel that involves duplicate device registration in netdev hooks. This post explains its technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43454 Overview

CVE-2026-43454 is a vulnerability in the Linux kernel's netfilter subsystem, specifically within the nf_tables netdev hook handling logic. When the kernel processes a NETDEV_REGISTER notification, the code fails to prevent duplicate device registration in cases where the device was already added by nft_netdev_hook_alloc() during hook creation. The flaw allows a local authenticated attacker to corrupt internal kernel state through duplicated entries in the netdev hook list.

The vulnerability affects the integrity, confidentiality, and availability of the host. Linux kernel maintainers have merged fixes upstream across multiple stable trees.

Critical Impact

A local attacker with low privileges can leverage the duplicate device registration condition in nf_tables netdev hooks to escalate privileges or destabilize the kernel.

Affected Products

  • Linux kernel (mainline) versions containing the unpatched nf_tables netdev hook registration logic
  • Linux stable kernel branches prior to the commits referenced in the upstream fix
  • Distributions shipping vulnerable kernel builds with CONFIG_NF_TABLES_NETDEV enabled

Discovery Timeline

  • 2026-05-08 - CVE CVE-2026-43454 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43454

Vulnerability Analysis

The vulnerability resides in the nf_tables netfilter subsystem, which allows administrators to define packet filtering hooks attached to network devices. The kernel maintains a list of devices associated with a netdev chain through hook structures allocated by nft_netdev_hook_alloc().

When a network device is created, the kernel emits a NETDEV_REGISTER notification. The netdev hook notifier processes this event and attempts to add the device to the relevant chain. The pre-patch code path does not check whether the device was already registered when the hook was first created, leading to duplicate entries in the hook list. Duplicate registration corrupts kernel data structures used during packet processing and teardown.

The issue carries local attack vector characteristics and produces high impact across confidentiality, integrity, and availability. EPSS data places exploitation probability at 0.013% as of the publication window.

Root Cause

The root cause is missing duplicate-detection logic in the NETDEV_REGISTER notification handler within nf_tables. Because nft_netdev_hook_alloc() can add a device entry during hook creation, the subsequent notifier path must verify the device is not already present. The absence of this check causes a kernel-side state inconsistency consistent with race condition and list manipulation flaws.

Attack Vector

An attacker with local access and the ability to create or manipulate nf_tables netdev hooks, typically requiring CAP_NET_ADMIN within a user namespace on systems where unprivileged user namespaces are enabled, can trigger the duplicate registration sequence. By coordinating hook allocation with device registration events, the attacker corrupts hook list integrity. The corrupted state can be leveraged for use-after-free style behavior during cleanup, enabling potential privilege escalation or kernel crash.

Verified exploitation code is not publicly available. See the upstream commits at Kernel Git Commit Changes, Kernel Git Commit Bugfix, and Kernel Git Commit Update for the corrective changes.

Detection Methods for CVE-2026-43454

Indicators of Compromise

  • Unexpected kernel oops or WARN_ON messages referencing nf_tables, nft_netdev_hook, or list manipulation routines in dmesg
  • Repeated creation and teardown of netdev-type nft chains by unprivileged or low-privileged user sessions
  • Kernel panics correlated with rapid network interface creation events such as veth, dummy, or macvlan provisioning

Detection Strategies

  • Audit kernel logs for stack traces involving nft_netdev_hook_alloc, nf_tables_netdev_event, or list corruption warnings.
  • Monitor process activity invoking nft or raw netlink NFNL_SUBSYS_NFTABLES operations from non-administrative contexts.
  • Correlate unshare and user namespace creation events with subsequent netfilter configuration changes on the same process tree.

Monitoring Recommendations

  • Forward kernel ring buffer and auditd events to a centralized logging or SIEM pipeline for retention and correlation.
  • Track CAP_NET_ADMIN usage inside user namespaces and alert on uncommon invocations from interactive shells.
  • Inventory running kernel versions across the fleet and flag hosts lacking the upstream stable fix commits.

How to Mitigate CVE-2026-43454

Immediate Actions Required

  • Apply the upstream stable kernel updates that incorporate the fix commits 2041cdb0, 6d2a95c6, and b7cdc5a9.
  • Rebuild or update distribution kernel packages and reboot affected hosts to load the patched kernel.
  • Restrict CAP_NET_ADMIN and disable unprivileged user namespaces where operationally feasible.

Patch Information

The Linux kernel maintainers resolved the issue by adding duplicate-device detection before adding entries in the NETDEV_REGISTER notifier path of nf_tables. The corrective changes are available at Kernel Git Commit Changes, Kernel Git Commit Bugfix, and Kernel Git Commit Update. Consult your distribution vendor for backported releases.

Workarounds

  • Disable unprivileged user namespaces by setting kernel.unprivileged_userns_clone=0 on supported distributions.
  • Remove or restrict the nf_tables and nf_tables_netdev modules on hosts that do not require netfilter netdev chains.
  • Limit which users and containers may load kernel modules or invoke nft against netdev-type chains.
bash
# Configuration example: disable unprivileged user namespaces and audit nf_tables module load
sysctl -w kernel.unprivileged_userns_clone=0
echo 'kernel.unprivileged_userns_clone=0' > /etc/sysctl.d/99-cve-2026-43454.conf

# Prevent loading the netdev netfilter module if unused
echo 'install nf_tables_netdev /bin/true' > /etc/modprobe.d/disable-nf_tables_netdev.conf

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

  • Vulnerability Details
  • TypeOther

  • 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 Git Commit Changes

  • Kernel Git Commit Bugfix

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort Vulnerability

  • CVE-2026-43308: Linux Kernel BUG Error 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