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

CVE-2026-43427: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43427 is a use-after-free flaw in the Linux kernel's USB CDC-WDM driver caused by memory reordering that can expose uninitialized memory. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43427 Overview

CVE-2026-43427 affects the Linux kernel's USB Communications Device Class (CDC) WDM driver (cdc-wdm). The vulnerability resides in the driver's read code path, where compiler optimization or CPU out-of-order execution can reorder a desc->length update before a memmove operation. When this reordering occurs, wdm_read() observes the updated length and invokes copy_to_user() on uninitialized memory. The flaw also violates Linux Kernel Memory Model (LKMM) data race rules. Maintainers resolved the issue using WRITE_ONCE and memory barriers to enforce correct ordering between the buffer move and length field update.

Critical Impact

Local userspace processes reading from cdc-wdm device nodes may receive uninitialized kernel memory contents, leading to information disclosure from the kernel heap.

Affected Products

  • Linux kernel — USB class driver subsystem (drivers/usb/class/cdc-wdm.c)
  • Multiple stable branches receiving the backported fix across eight patch commits
  • Systems exposing USB CDC WDM devices (modems, mobile broadband adapters) to userspace

Discovery Timeline

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

Technical Details for CVE-2026-43427

Vulnerability Analysis

The cdc-wdm driver buffers data received from USB CDC devices before delivering it to userspace via read() syscalls. The producer path copies data into the read buffer with memmove and then updates desc->length to reflect the new payload size. The consumer path in wdm_read() checks desc->length to determine how many bytes to deliver via copy_to_user().

Without explicit ordering primitives, the compiler or CPU can reorder the store to desc->length ahead of the memmove write. A concurrent wdm_read() running on another CPU can observe the new length while the buffer still contains stale or uninitialized data. The driver then hands that uninitialized memory to userspace.

This is a memory ordering bug classified as a data race [Race Condition] producing an Uninitialized Memory Use condition. The fix annotates the length store with WRITE_ONCE and inserts memory barriers so that the buffer contents are globally visible before the length update becomes observable.

Root Cause

The root cause is missing ordering between two related stores in the read code path. C compilers treat the memmove result and the scalar desc->length assignment as independent, and weakly-ordered architectures (such as arm64) do not guarantee program-order visibility of independent stores across CPUs. The producer thread updates state in an order that the consumer thread observes inconsistently.

Attack Vector

Exploitation requires local access to a cdc-wdm character device, typically /dev/cdc-wdm0, which is exposed when a compatible USB modem or mobile broadband interface is attached. A local attacker with permission to read the device node can race the driver's buffer update logic by issuing repeated read() calls while data arrives on the USB endpoint. Successful races leak fragments of uninitialized kernel slab memory, which may contain residual data from prior allocations including pointers useful for defeating Kernel Address Space Layout Randomization (KASLR).

The vulnerability does not provide direct code execution. Its primary impact is information disclosure that can support subsequent local privilege escalation chains. Reliable triggering depends on the underlying CPU architecture's memory model and concurrent USB device activity.

No public proof-of-concept code is available. Technical detail on the fix is available in the upstream patch series referenced below.

Detection Methods for CVE-2026-43427

Indicators of Compromise

  • Unexpected userspace processes performing tight-loop reads against /dev/cdc-wdm* device nodes
  • Kernel logs showing repeated open/read activity on cdc-wdm interfaces from non-telephony processes
  • Anomalous access by unprivileged users to USB modem device nodes that are normally restricted to ModemManager or NetworkManager

Detection Strategies

  • Audit open() and read() syscalls targeting /dev/cdc-wdm* using auditd rules or eBPF-based syscall tracing
  • Compare running kernel version against the patched stable releases corresponding to the eight upstream commits listed in references
  • Inventory USB devices that bind to the cdc-wdm driver via lsusb and /sys/class/usbmisc to scope exposure

Monitoring Recommendations

  • Track process behavior accessing USB character devices and flag non-standard consumers reading from cdc-wdm nodes
  • Monitor kernel package versions across the fleet and alert when hosts remain on pre-patch kernel builds
  • Correlate USB hotplug events with subsequent device-node access patterns to identify suspicious sequences

How to Mitigate CVE-2026-43427

Immediate Actions Required

  • Update the Linux kernel to a stable release containing the cdc-wdm reordering fix from the upstream patch series
  • Restrict permissions on /dev/cdc-wdm* nodes to system service accounts only and remove world-readable access where present
  • Unload the cdc_wdm module on systems that do not require USB CDC WDM functionality using modprobe -r cdc_wdm

Patch Information

The fix uses WRITE_ONCE and memory barriers to enforce ordering between the buffer update and the length field store in wdm_read(). The patch has been backported across multiple stable kernel branches. See the upstream commits: Kernel Patch 170e8da, Kernel Patch 276aef0, Kernel Patch 4ee3062, Kernel Patch 638328c, Kernel Patch 67ed312, Kernel Patch 8df672b, Kernel Patch c8fa96e, and Kernel Patch e3c874b.

Workarounds

  • Blacklist the cdc_wdm module on hosts that do not use USB modem hardware to eliminate the attack surface
  • Apply udev rules to enforce 0600 permissions and restrict device ownership to a dedicated service account
  • Disable USB device autoloading via kernel boot parameters on servers where USB peripherals are not required
bash
# Blacklist the cdc_wdm module
echo 'blacklist cdc_wdm' | sudo tee /etc/modprobe.d/blacklist-cdc-wdm.conf
sudo modprobe -r cdc_wdm

# Restrict device node permissions via udev
echo 'KERNEL=="cdc-wdm*", MODE="0600", OWNER="root", GROUP="root"' | \
  sudo tee /etc/udev/rules.d/90-cdc-wdm.rules
sudo udevadm control --reload-rules

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 170e8da

  • Kernel Patch 276aef0

  • Kernel Patch 4ee3062

  • Kernel Patch 638328c

  • Kernel Patch 67ed312

  • Kernel Patch 8df672b

  • Kernel Patch c8fa96e

  • Kernel Patch e3c874b
  • Related CVEs
  • CVE-2026-43322: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43313: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43297: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43458: Linux Kernel Use-After-Free 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