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

CVE-2026-23075: Linux Kernel USB Memory Leak Vulnerability

CVE-2026-23075 is a memory leak vulnerability in the Linux kernel's CAN esd_usb driver that causes URB memory leaks during USB transfers. This post explains its technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2026-23075 Overview

A memory leak vulnerability has been identified in the Linux kernel's ESD USB CAN driver (esd_usb). The vulnerability exists in the esd_usb_read_bulk_callback() function where USB Request Blocks (URBs) for USB-in transfers are not properly anchored after completion, leading to memory resources not being released when the device is closed. This issue is similar to a previously resolved memory leak in the gs_usb driver (commit 7352e1d5932a).

Critical Impact

Prolonged use of affected ESD USB CAN devices can lead to kernel memory exhaustion due to URBs not being properly freed, potentially resulting in system instability or denial of service conditions.

Affected Products

  • Linux kernel with ESD USB CAN driver (esd_usb module)
  • Systems using ESD CAN USB interfaces for Controller Area Network communications
  • Industrial and automotive systems utilizing Linux-based CAN bus implementations

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23075 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23075

Vulnerability Analysis

The vulnerability stems from improper URB lifecycle management in the ESD USB CAN driver. When esd_usb_open() is called, URBs for USB-in transfers are allocated, added to the dev->rx_submitted anchor, and submitted to the USB subsystem. The completion callback esd_usb_read_bulk_callback() processes these URBs and resubmits them for continued data reception.

The critical issue is that the USB framework unanchors URBs before invoking the completion callback. Consequently, when an in-URB completes processing, it is no longer associated with the dev->rx_submitted anchor. When esd_usb_close() is later called, it invokes usb_kill_anchored_urbs(&dev->rx_submitted) to free URBs, but the unanchored URBs are missed and never released.

This results in a cumulative memory leak where each completed URB that isn't properly re-anchored remains allocated in kernel memory indefinitely.

Root Cause

The root cause is the failure to re-anchor URBs in the esd_usb_read_bulk_callback() completion function after the USB framework automatically unanchors them. The original implementation assumed URBs would remain anchored throughout their lifecycle, but the USB subsystem's behavior of unanchoring URBs before callback invocation was not accounted for.

Attack Vector

While this vulnerability primarily manifests as a resource exhaustion issue rather than a directly exploitable security flaw, potential attack scenarios include:

  • Local attackers with access to ESD USB CAN devices could repeatedly open and close the device interface to accelerate memory exhaustion
  • In industrial control systems or automotive environments, sustained CAN bus traffic could cause gradual memory depletion over time
  • Systems running for extended periods without restarts are particularly susceptible to eventual memory exhaustion

The fix involves anchoring the URB back to dev->rx_submitted within the esd_usb_read_bulk_callback() function before resubmitting it, ensuring proper cleanup occurs when esd_usb_close() is called.

Detection Methods for CVE-2026-23075

Indicators of Compromise

  • Gradual increase in kernel memory usage on systems with active ESD USB CAN devices
  • Memory allocation failures or OOM (Out of Memory) killer activations after extended CAN bus operations
  • System logs showing USB-related memory warnings or esd_usb module errors
  • Unexplained system slowdowns on devices performing continuous CAN bus communications

Detection Strategies

  • Monitor kernel memory allocation trends, particularly slab allocations related to USB subsystems
  • Implement automated kernel memory profiling for systems utilizing CAN bus hardware
  • Review dmesg output for USB driver warnings or memory-related kernel messages
  • Use tools like slabtop or /proc/slabinfo to track USB URB memory allocations over time

Monitoring Recommendations

  • Establish baseline memory usage metrics for systems with ESD USB CAN devices
  • Configure alerts for abnormal memory consumption patterns in production environments
  • Schedule periodic system restarts for critical systems until patches can be applied
  • Monitor /sys/kernel/slab/ entries related to USB allocations for unusual growth

How to Mitigate CVE-2026-23075

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the URB memory leak fix
  • Restart affected systems to reclaim leaked memory from unpatched kernel sessions
  • Consider temporarily disabling or disconnecting ESD USB CAN devices on systems where patching is delayed
  • Implement memory monitoring to detect and respond to resource exhaustion conditions

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix ensures that URBs are properly re-anchored to dev->rx_submitted within the esd_usb_read_bulk_callback() function before resubmission.

Verified patch commits are available in the stable kernel git repository:

  • Kernel Patch 5a4391bdc6c8
  • Kernel Patch 9d1807b442fc
  • Kernel Patch a9503ae43256
  • Kernel Patch adec5e1f9c99

Workarounds

  • Unload the esd_usb kernel module when not actively required: rmmod esd_usb
  • Limit CAN bus session durations and implement periodic device restarts
  • Use alternative CAN interfaces that don't rely on the affected driver until patches are applied
  • For critical systems, consider reverting to a known-good kernel version with the patch backported
bash
# Check if esd_usb module is loaded
lsmod | grep esd_usb

# Temporarily unload the vulnerable module (if not in active use)
sudo rmmod esd_usb

# Verify kernel version includes the fix
uname -r

# Monitor memory usage for leak detection
watch -n 5 'cat /proc/meminfo | grep -E "MemFree|Slab|SUnreclaim"'

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 Change Log Entry 1

  • Kernel Change Log Entry 2

  • Kernel Change Log Entry 3

  • Kernel Change Log Entry 4
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

  • CVE-2026-23431: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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