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

CVE-2026-43479: Linux Kernel LAN78xx NAPI Vulnerability

CVE-2026-43479 is a NAPI handling flaw in the Linux kernel's lan78xx USB network driver that triggers warnings during device disconnect. This article covers the technical details, affected systems, and mitigation steps.

Published: May 17, 2026

CVE-2026-43479 Overview

CVE-2026-43479 is a Linux kernel vulnerability in the lan78xx USB Ethernet driver. The flaw triggers a kernel warning in __netif_napi_del_locked() during USB device disconnect events. The driver calls netif_napi_del() redundantly in its disconnect path while NAPI (New API) remains enabled, producing a WARN at net/core/dev.c:7417. The fix removes the redundant call because unregister_netdev() already handles NAPI teardown safely.

The vulnerability affects systems using LAN78xx-based USB Ethernet adapters. Local users can trigger the warning by physically disconnecting the adapter or simulating a USB removal event.

Critical Impact

Triggers a kernel WARN on USB disconnect of LAN78xx Ethernet adapters, polluting kernel logs and potentially destabilizing systems configured to panic on warnings.

Affected Products

  • Linux kernel versions containing the lan78xx USB Ethernet driver prior to the upstream fix
  • Embedded and IoT systems using Microchip LAN78xx USB Gigabit Ethernet controllers
  • Stable kernel branches tracked by commits 20ce2bd, 312c816, and 395a8b9

Discovery Timeline

  • 2026-05-13 - CVE-2026-43479 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43479

Vulnerability Analysis

The lan78xx driver manages USB-attached Gigabit Ethernet controllers through the Linux networking stack. During device disconnect, the driver's lan78xx_disconnect() function invokes netif_napi_del() to tear down the NAPI context. This call occurs while NAPI is still enabled on the network device.

The kernel networking core enforces an invariant: __netif_napi_del_locked() must not be called on an enabled NAPI instance outside of unregister_netdev(). When lan78xx_disconnect() violates this invariant, the kernel emits a WARN at net/core/dev.c:7417. The disconnect sequence proceeds, but the warning indicates incorrect driver teardown ordering.

The call chain reaches the warning through usb_hub_wq processing a hub event: hub_event → usb_disconnect → usb_disable_device → device_del → usb_unbind_interface → lan78xx_disconnect → __netif_napi_del_locked.

Root Cause

The driver carries a redundant netif_napi_del() invocation in its disconnect path. The subsequent unregister_netdev() call already performs NAPI teardown automatically and in the correct ordering. The explicit call duplicates the operation and runs at the wrong point in the teardown sequence, when NAPI has not yet been disabled.

Attack Vector

The issue is reachable by any event that causes the LAN78xx USB device to disconnect from the host. This includes physical removal, USB bus resets, hub events, or driver unbinding through sysfs. The trigger requires either physical access or local privileges to manipulate USB device state. The vulnerability produces a kernel warning rather than memory corruption or privilege escalation.

For systems configured with panic_on_warn=1, the warning escalates to a kernel panic, creating a local denial-of-service condition. The upstream fix removes the redundant netif_napi_del() call in the disconnect handler, allowing unregister_netdev() to manage NAPI lifecycle correctly. Refer to the Kernel Patch 395a8b9 for the upstream change.

Detection Methods for CVE-2026-43479

Indicators of Compromise

  • Kernel log entries containing WARNING: CPU: X PID: X at net/core/dev.c:7417 __netif_napi_del_locked following a USB disconnect event
  • Preceding log lines from lan78xx reporting Failed to read register index with ret = -ENODEV
  • Stack traces showing lan78xx_disconnect calling into __netif_napi_del_locked

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for the WARN signature combined with lan78xx driver messages
  • Audit running kernel version against the fixed stable releases referenced by commits 20ce2bd1c1848414c5d3520d301ed3f5751ed634, 312c816c6bc30342bc30dca0d6db617ab4d3ae4e, and 395a8b903738511f536c97c427e15ef038e1a11c
  • Inventory hosts and embedded devices using Microchip LAN78xx USB Ethernet adapters

Monitoring Recommendations

  • Forward kernel ring buffer events to a central log platform and alert on __netif_napi_del_locked WARN traces
  • Track unexpected USB disconnect events on production systems where LAN78xx adapters serve primary connectivity
  • Verify whether panic_on_warn is enabled on hardened or production kernels, since the warning becomes fatal under that configuration

How to Mitigate CVE-2026-43479

Immediate Actions Required

  • Apply the upstream stable kernel patches referenced by commits 20ce2bd, 312c816, and 395a8b9 through your distribution's kernel update channel
  • Identify hosts using LAN78xx USB Ethernet adapters and prioritize them for the kernel update
  • Review panic_on_warn settings on affected systems and temporarily disable the option if patching is delayed

Patch Information

The fix removes the redundant netif_napi_del() call from lan78xx_disconnect(). The NAPI teardown is delegated to unregister_netdev(), which handles the operation safely. The patch is available in the upstream Linux stable tree. See Kernel Patch 20ce2bd, Kernel Patch 312c816, and Kernel Patch 395a8b9.

Workarounds

  • Avoid hot-unplugging LAN78xx USB Ethernet adapters on unpatched kernels
  • Disable panic_on_warn to prevent the kernel warning from escalating to a panic on production systems
  • Unbind the lan78xx driver gracefully through sysfs before physical removal where possible
bash
# Verify kernel version and check for the lan78xx module
uname -r
lsmod | grep lan78xx

# Inspect dmesg for the WARN signature
dmesg | grep -E "lan78xx|__netif_napi_del_locked"

# Temporarily disable panic_on_warn until patching completes
sysctl -w kernel.panic_on_warn=0

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.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 20ce2bd

  • Kernel Patch 312c816

  • Kernel Patch 395a8b9
  • Related CVEs
  • CVE-2026-43493: Linux Kernel Crypto Pcrypt Vulnerability

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