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

CVE-2026-43260: Linux Kernel Privilege Escalation Flaw

CVE-2026-43260 is a privilege escalation vulnerability in the Linux kernel affecting bnxt_en RSS context handling. This flaw can lead to VNIC leaks and resource failures. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43260 Overview

CVE-2026-43260 is a Linux kernel vulnerability in the bnxt_en driver, which supports Broadcom NetXtreme-C/E network adapters. The flaw resides in the Receive Side Scaling (RSS) context deletion logic. A previous commit (667ac333dbb7) added a netif_running() check that prevented freeing the corresponding RSS context Virtual NIC (VNIC) in firmware when the interface was down. This conditional behavior causes the driver to leak VNICs in firmware whenever close() occurs while RSS contexts are still active. The upstream fix removes the netif_running() check so VNICs are always released in firmware on RSS context deletion.

Critical Impact

Active RSS contexts can be lost after interface close/open cycles, leading to firmware resource leaks and failed VNIC creation requests on subsequent open() calls.

Affected Products

  • Linux kernel bnxt_en driver for Broadcom NetXtreme-C/E network adapters
  • Kernel branches that included commit 667ac333dbb7 introducing the netif_running() guard
  • Systems running Broadcom 5741x/5750x/5760x series NICs using the in-tree driver

Discovery Timeline

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

Technical Details for CVE-2026-43260

Vulnerability Analysis

The bnxt_en driver manages RSS contexts that map to firmware-resident VNIC resources on Broadcom NetXtreme adapters. RSS contexts allow the NIC to distribute incoming traffic across multiple receive queues. When userspace deletes an RSS context, the driver must release the associated VNIC reservation in firmware via Hardware Resource Manager (HWRM) commands. The defective logic gated this firmware release on the netif_running() state, skipping the firmware notification when the interface was administratively down.

The consequence is a firmware-side resource leak. After close() with active RSS contexts, the driver state shows the contexts as deleted while firmware still holds the VNIC reservations. On the next open(), the driver attempts to restore RSS contexts and request additional VNIC reservations beyond what was actually freed. Firmware can reject these requests, causing the loss of legitimate active RSS contexts.

Root Cause

The root cause is an over-restrictive precondition added in commit 667ac333dbb7. The HWRM functions already validate delete requests and return cleanly when a resource is already freed. The netif_running() check was therefore unnecessary and introduced an inconsistency between driver and firmware bookkeeping for VNIC reservations.

Attack Vector

This is a kernel reliability and resource-management defect rather than a remotely exploitable memory corruption issue. The condition is triggered through standard administrative actions: configuring RSS contexts, bringing the interface down, then back up. There is no public indication of an exploitable security primitive. Exposure is local and depends on having privileges to manage networking state. See the upstream commit references for the resolved logic.

Detection Methods for CVE-2026-43260

Indicators of Compromise

  • Kernel log entries from bnxt_en reporting HWRM failures or VNIC allocation errors after ifdown/ifup sequences on systems with configured RSS contexts.
  • Loss of previously configured RSS contexts after an interface restart, observable via ethtool -x showing fewer indirection tables than configured.
  • HWRM command return codes indicating resource exhaustion when restoring RSS state on open().

Detection Strategies

  • Audit running kernel versions across the fleet and identify hosts using bnxt_en with kernel builds that include commit 667ac333dbb7 but not the fix commits 079986d6db1f, 348a5f8d06c7, 9a9b89eea4a9, or e123d9302d22.
  • Monitor dmesg and journalctl -k for bnxt_en HWRM error patterns, especially after network interface state transitions.
  • Track changes in ethtool -x <iface> and ethtool -X <iface> context N output around interface up/down events to spot context loss.

Monitoring Recommendations

  • Centralize kernel logs from Broadcom NIC hosts into your logging or SIEM platform and alert on bnxt_en HWRM failure strings.
  • Add health checks that validate expected RSS context counts after planned and unplanned interface restarts.
  • Include kernel and driver version inventory in vulnerability management scans to confirm patch deployment.

How to Mitigate CVE-2026-43260

Immediate Actions Required

  • Identify hosts running affected bnxt_en driver versions on Broadcom NetXtreme adapters and prioritize kernel updates on systems that rely on RSS contexts.
  • Apply the stable kernel update containing the fix commits referenced in the Linux stable tree.
  • Until patched, avoid bringing interfaces down on hosts with active RSS contexts unless the operation is required.

Patch Information

The fix removes the netif_running() condition from the RSS context delete path so the driver always frees the corresponding VNIC in firmware. Reference commits across stable branches: 079986d6db1f, 348a5f8d06c7, 9a9b89eea4a9, and e123d9302d22. Distribution-provided kernel updates that backport these commits resolve the issue.

Workarounds

  • Recreate RSS contexts manually via ethtool -X after each interface restart on unpatched systems where downtime is required.
  • Schedule interface state changes during maintenance windows and validate RSS context state afterward.
  • Reload the bnxt_en module to fully reset firmware VNIC state if context loss is observed before patching is feasible.
bash
# Verify kernel version and inspect RSS contexts on a Broadcom NIC
uname -r
ethtool -i eth0 | grep -E 'driver|version'
ethtool -x eth0

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

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference
  • Related CVEs
  • CVE-2026-46228: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46225: Linux Kernel RSPI Privilege Escalation

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

  • CVE-2026-43332: 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