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

CVE-2026-43255: Linux Kernel Race Condition Vulnerability

CVE-2026-43255 is a race condition flaw in the Linux kernel's libertas WiFi driver that causes URB submission errors during firmware loading. This article covers the technical details, affected systems, and mitigation.

Published: May 7, 2026

CVE-2026-43255 Overview

CVE-2026-43255 is a kernel vulnerability in the Linux libertas Wi-Fi driver. The flaw resides in the usb_tx_block() function, which submits the cardp->tx_urb USB Request Block (URB) without confirming that any prior transmission on the same URB has completed. When a second submission occurs while the URB remains active, such as during rapid firmware loading, usb_submit_urb() triggers the kernel warning URB submitted while active. The upstream fix enforces serialization by calling usb_kill_urb() before submitting a new request, ensuring the URB is idle and safe to reuse.

Critical Impact

A race condition in the libertas USB Wi-Fi driver can produce kernel warnings and unstable URB state during firmware loading on affected systems.

Affected Products

  • Linux kernel — drivers/net/wireless/marvell/libertas USB transport
  • Systems using Marvell Libertas-based USB Wi-Fi adapters
  • Distributions shipping affected upstream kernel versions prior to the fix commits

Discovery Timeline

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

Technical Details for CVE-2026-43255

Vulnerability Analysis

The defect is a race condition in the libertas wireless driver's USB submission path. The function usb_tx_block() re-submits cardp->tx_urb without first verifying that any previous transfer using the same URB has finished. Because USB Request Blocks cannot legally be re-submitted while still active, the USB core's usb_submit_urb() validation logic detects the in-flight state and emits the URB submitted while active warning. Under rapid firmware loading or other tight transmission loops, the timing window widens and the warning becomes reproducible.

While the immediate symptom is a kernel log warning, the underlying behavior reflects unsynchronized access to a shared URB structure. This category of defect [Race Condition] in kernel drivers can lead to inconsistent driver state, dropped transmissions, or undefined behavior depending on the surrounding code paths.

Root Cause

The driver lacked serialization between successive uses of the single tx_urb member of the card private structure. No prior call to usb_kill_urb() or completion wait existed to guarantee the URB was idle before re-submission. The fix introduces an explicit usb_kill_urb() call before each new submission so the URB is always in a known idle state.

Attack Vector

Triggering the condition requires interaction with the libertas USB Wi-Fi device, typically through firmware loading or transmission paths that issue back-to-back URB submissions. The reported scenario occurs during rapid firmware loading. No specific exploitation primitive beyond local hardware interaction has been documented in the upstream report.

See the upstream patch series for technical detail: Kernel Commit 2902a9b, Kernel Commit 3308c75, Kernel Commit 498525d, Kernel Commit 5bfb254, Kernel Commit 948a39c, Kernel Commit b820735, Kernel Commit d66676e, and Kernel Commit fc188b4.

Detection Methods for CVE-2026-43255

Indicators of Compromise

  • Kernel log messages containing the string URB submitted while active originating from USB core submission validation.
  • Repeated warnings tied to the libertas or libertas_usb module during firmware load or Wi-Fi initialization.
  • Stack traces in dmesg referencing usb_tx_block and usb_submit_urb.

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for WARNING-level messages from the USB subsystem associated with libertas devices.
  • Inventory hosts that have the libertas or libertas_usb kernel modules loaded using lsmod and identify those running unpatched kernels.
  • Correlate kernel warnings with firmware reload events to identify systems exposed to the race window.

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on the URB submitted while active signature.
  • Track installed kernel versions across the fleet and compare against the stable trees that include the fix commits.
  • Audit which endpoints rely on Marvell Libertas USB Wi-Fi adapters and prioritize them for kernel updates.

How to Mitigate CVE-2026-43255

Immediate Actions Required

  • Update affected systems to a Linux kernel build that includes the upstream libertas: fix WARNING in usb_tx_block patch series.
  • For systems that cannot be patched immediately, unload the libertas module if the hardware is not required: modprobe -r libertas_usb libertas.
  • Restrict physical access to USB ports on systems where untrusted Libertas-class adapters could be attached.

Patch Information

The fix calls usb_kill_urb(cardp->tx_urb) before re-submission in usb_tx_block(), ensuring serialized URB reuse. The change is distributed across multiple stable trees in commits 2902a9b, 3308c75, 498525d, 5bfb254, 948a39c, b820735, d66676e, and fc188b4. Apply the kernel update from your distribution that incorporates these commits, then reboot to load the corrected module.

Workarounds

  • Avoid operations that cause rapid successive firmware loads on Libertas USB adapters until the kernel is updated.
  • Blacklist the libertas and libertas_usb modules on systems that do not require this Wi-Fi hardware by adding blacklist libertas and blacklist libertas_usb to /etc/modprobe.d/blacklist.conf.
  • Replace legacy Marvell Libertas USB adapters with currently supported wireless hardware where feasible.
bash
# Configuration example
# Verify kernel version and libertas module status
uname -r
lsmod | grep libertas

# Temporarily unload the driver
sudo modprobe -r libertas_usb libertas

# Persistently disable the driver until kernel is patched
echo 'blacklist libertas'     | sudo tee -a /etc/modprobe.d/blacklist-libertas.conf
echo 'blacklist libertas_usb' | sudo tee -a /etc/modprobe.d/blacklist-libertas.conf

# Monitor for the warning signature
sudo dmesg -w | grep -i 'URB submitted while active'

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Commit #2902a9b

  • Kernel Commit #3308c75

  • Kernel Commit #498525d

  • Kernel Commit #5bfb254

  • Kernel Commit #948a39c

  • Kernel Commit #b820735

  • Kernel Commit #d66676e

  • Kernel Commit #fc188b4
  • Related CVEs
  • CVE-2026-31728: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31563: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31551: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31667: Linux Kernel Race Condition 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