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

CVE-2026-43342: Linux Kernel Race Condition Vulnerability

CVE-2026-43342 is a race condition vulnerability in the Linux Kernel's f_rndis USB gadget driver that affects RNDIS options accessed through configfs. This article covers the technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43342 Overview

CVE-2026-43342 is a race condition vulnerability in the Linux kernel's USB gadget RNDIS function driver (f_rndis). The class, subclass, and protocol options in this driver can be accessed concurrently through configfs without proper synchronization. This concurrent access creates a race condition classified under [CWE-362] (Concurrent Execution using Shared Resource with Improper Synchronization).

The issue was identified during code inspection. The upstream fix introduces an existing mutex to protect these RNDIS options from concurrent modification, eliminating the race window.

Critical Impact

A local low-privileged attacker with access to configfs can trigger concurrent access to RNDIS options, potentially leading to a high-impact availability disruption on affected Linux systems.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.0 release candidates rc1 through rc6
  • Systems with USB gadget RNDIS function enabled via configfs

Discovery Timeline

  • 2026-05-08 - CVE-2026-43342 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-43342

Vulnerability Analysis

The vulnerability resides in the f_rndis USB gadget function driver within the Linux kernel. RNDIS (Remote Network Driver Interface Specification) is Microsoft's protocol used for emulating network connections over USB. The driver exposes configuration options including class, subclass, and protocol through the configfs virtual filesystem.

These option attributes can be read and written concurrently from userspace through different file descriptors. Without proper locking, simultaneous access produces inconsistent state. The maintainers identified this issue during code inspection rather than in response to active exploitation.

The attack vector is local and requires low privileges, but exploitation complexity is high. Successful exploitation impacts availability without affecting confidentiality or integrity.

Root Cause

The root cause is missing synchronization on shared option fields in the f_rndis driver. The class/subclass/protocol attributes are exposed as writable configfs entries but the read and write paths do not acquire the function's existing mutex. The fix reuses the existing mutex to serialize access to these option fields.

Attack Vector

An attacker with local access and permissions to interact with configfs USB gadget configuration paths can issue concurrent writes to the RNDIS class, subclass, and protocol attributes. Triggering the race requires precise timing, reflected in the high attack complexity rating. Successful triggering can corrupt the gadget configuration state and disrupt USB gadget functionality.

No public proof-of-concept exploit is available and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. EPSS data reports a probability of 0.032%, indicating low likelihood of exploitation in the near term.

The vulnerability mechanism is described in the upstream commit messages. Refer to the kernel git commits for the exact code changes that add mutex protection around the RNDIS option accessors.

Detection Methods for CVE-2026-43342

Indicators of Compromise

  • Unexpected kernel warnings or oops messages referencing f_rndis or RNDIS configfs paths
  • Anomalous USB gadget reconfiguration events from non-administrative user contexts
  • System logs showing repeated writes to /sys/kernel/config/usb_gadget/*/functions/rndis.*/class, subclass, or protocol attributes

Detection Strategies

  • Audit kernel versions against the patched commits listed in the vendor advisories to identify exposed hosts
  • Monitor process activity that opens and writes to USB gadget configfs paths, particularly from unexpected user accounts
  • Correlate kernel ring buffer (dmesg) entries with userspace processes manipulating gadget configuration

Monitoring Recommendations

  • Enable Linux audit rules on /sys/kernel/config/usb_gadget/ to capture write events with associated process context
  • Track loaded kernel modules and flag systems running unpatched kernel versions with usb_f_rndis loaded
  • Alert on unusual USB gadget reconfiguration during runtime on production systems that do not require dynamic gadget changes

How to Mitigate CVE-2026-43342

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the vendor advisories for the affected stable branch in use
  • Restrict access to USB gadget configfs paths to root and dedicated administrative accounts only
  • Unload the usb_f_rndis module on systems that do not require USB RNDIS gadget functionality

Patch Information

The Linux kernel maintainers released fixes across multiple stable branches. The relevant commits are 0a75d97, 209decd3, 446f1842, 65b7dbf, 7d8fa3b, 8d8c68b, c1b3d5b, and cb5316b. Each fix introduces mutex protection around the RNDIS class, subclass, and protocol option accessors.

Workarounds

  • Blacklist the usb_f_rndis kernel module on hosts that do not require RNDIS USB gadget functionality
  • Tighten filesystem permissions on /sys/kernel/config/usb_gadget/ so only privileged administrators can modify gadget attributes
  • Disable configfs mounting entirely on systems that do not use USB gadget composition

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 Kernel

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-362
  • Vendor Resources
  • Kernel Git Commit - c/0a75d97

  • Kernel Git Commit - c/209decd3

  • Kernel Git Commit - c/446f184

  • Kernel Git Commit - c/65b7dbf

  • Kernel Git Commit - c/7d8fa3b

  • Kernel Git Commit - c/8d8c68b

  • Kernel Git Commit - c/c1b3d5b

  • Kernel Git Commit - c/cb5316b
  • Related CVEs
  • CVE-2026-43340: Linux Kernel Race Condition Vulnerability

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

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

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