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

CVE-2026-23324: Linux Kernel USB URB Anchor Vulnerability

CVE-2026-23324 is a URB anchoring flaw in the Linux kernel's CAN USB etas_es58x driver that could lead to resource leaks. This post explains the technical details, affected versions, potential impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-23324 Overview

A memory leak vulnerability has been identified in the Linux kernel's ETAS ES58X USB CAN (Controller Area Network) driver. The vulnerability exists in the read bulk callback function where USB Request Blocks (URBs) are not properly anchored before submission. When using the anchor pattern for URB management, failure to anchor the URB before calling usb_submit_urb() can result in memory leaks if usb_kill_anchored_urbs() is subsequently called.

Critical Impact

Local attackers with access to USB CAN devices could potentially trigger memory exhaustion conditions through improper URB handling in the etas_es58x driver, leading to system instability or denial of service.

Affected Products

  • Linux Kernel (versions with etas_es58x USB CAN driver)
  • Systems using ETAS ES581.4, ES582.1, or ES584.1 USB-to-CAN interfaces
  • Industrial and automotive systems relying on CAN bus communication via USB adapters

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23324 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23324

Vulnerability Analysis

The etas_es58x driver implements USB communication for ETAS ES58X series CAN interfaces commonly used in automotive diagnostics and industrial control systems. The driver utilizes the URB (USB Request Block) anchor pattern, which is a standard Linux kernel mechanism for tracking and managing asynchronous USB operations.

The anchor pattern requires that URBs be anchored to an anchor list before submission. This ensures that when usb_kill_anchored_urbs() is called (typically during device disconnection or driver shutdown), all outstanding URBs can be properly cancelled and their memory released. In the vulnerable code path within the read bulk callback function, the URB was being submitted without first being anchored, violating this protocol.

This implementation inconsistency is particularly problematic because the anchoring logic was correctly implemented in other parts of the same driver, making this an oversight in the read bulk callback specifically.

Root Cause

The root cause is an incorrect ordering of operations in the read bulk callback function of the etas_es58x driver. The URB must be anchored using usb_anchor_urb() before being submitted with usb_submit_urb(). Without this anchoring step, the URB becomes untracked, and subsequent calls to usb_kill_anchored_urbs() will not include this URB, resulting in a memory leak.

The fix involves ensuring that usb_anchor_urb() is called on the URB before usb_submit_urb() is invoked in the read bulk callback, consistent with the implementation pattern used elsewhere in the driver.

Attack Vector

Exploitation of this vulnerability requires local access to a system with an ETAS ES58X USB CAN device connected. An attacker could potentially trigger repeated URB submissions through the read bulk callback while simultaneously causing conditions that invoke usb_kill_anchored_urbs(), such as device disconnection events.

The vulnerability could be exploited to cause memory exhaustion over time, leading to denial of service conditions. The attack surface is limited to systems with physical USB CAN hardware and appropriate driver modules loaded.

Detection Methods for CVE-2026-23324

Indicators of Compromise

  • Unusual memory consumption growth associated with the etas_es58x kernel module
  • Kernel memory allocation failures or OOM (Out of Memory) killer activity on systems with USB CAN devices
  • Unexpected USB device disconnect/reconnect events paired with memory pressure indicators

Detection Strategies

  • Monitor kernel memory allocation patterns using tools like slabtop or /proc/meminfo on systems running the etas_es58x driver
  • Implement kernel tracing with ftrace or perf to monitor URB submission and anchoring operations in the driver
  • Review system logs (dmesg, journalctl) for USB subsystem errors or memory allocation failures related to CAN interfaces

Monitoring Recommendations

  • Deploy memory pressure monitoring on industrial systems using ETAS ES58X CAN interfaces
  • Establish baseline memory usage for systems with the etas_es58x module loaded and alert on significant deviations
  • Monitor USB device enumeration events to detect potential exploitation attempts involving rapid connect/disconnect cycles

How to Mitigate CVE-2026-23324

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix for the etas_es58x driver
  • If patching is not immediately possible, consider unloading the etas_es58x module on non-essential systems
  • Restrict physical access to USB ports on critical systems to prevent unauthorized device connections

Patch Information

The Linux kernel development team has released patches to address this vulnerability. Multiple stable kernel branches have received fixes that ensure proper URB anchoring in the read bulk callback function.

The following kernel commits contain the fix:

  • Kernel Commit 18eee279e9b5
  • Kernel Commit 2185ea6e4ebc
  • Kernel Commit 5eaad4f76826
  • Kernel Commit b878444519fa
  • Kernel Commit b8f9ca882535
  • Kernel Commit f6e90c113c92

Workarounds

  • Temporarily blacklist the etas_es58x module by adding blacklist etas_es58x to /etc/modprobe.d/blacklist.conf if the CAN functionality is not required
  • Implement USB device authorization controls to prevent unauthorized CAN adapters from being recognized
  • Use alternative CAN interfaces that do not rely on the affected driver until patching is complete
bash
# Configuration example
# Blacklist the vulnerable driver until patched kernel is deployed
echo "blacklist etas_es58x" | sudo tee /etc/modprobe.d/etas_es58x-blacklist.conf

# Unload the module if currently loaded
sudo modprobe -r etas_es58x

# Verify module is not loaded
lsmod | grep etas_es58x

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
  • Linux Kernel Commit Change

  • Linux Kernel Commit Change

  • Linux Kernel Commit Change

  • Linux Kernel Commit Change

  • Linux Kernel Commit Change

  • Linux Kernel Commit Change
  • Related CVEs
  • CVE-2026-23308: Linux Kernel pinctrl IRQ Vulnerability

  • CVE-2026-23373: Linux Kernel RSI WiFi Driver Vulnerability

  • CVE-2026-23360: Linux Kernel NVMe Admin Queue Leak Bug

  • CVE-2026-23366: Linux Kernel NULL Pointer Vulnerability
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