Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23347

CVE-2026-23347: Linux Kernel USB Anchor Vulnerability

CVE-2026-23347 is a USB anchor handling flaw in the Linux kernel f81604 CAN driver that could lead to URB leaks when anchored URBs are improperly submitted. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23347 Overview

A memory leak vulnerability has been identified in the Linux kernel's CAN USB f81604 driver. The vulnerability exists in the read bulk callback function where the URB (USB Request Block) is not properly anchored before submission. When using the anchor pattern for URB management, the URB must be anchored before submitting it; otherwise, it could be leaked if usb_kill_anchored_urbs() is called. While this logic is correctly implemented elsewhere in the driver, the read bulk callback was missing this critical step.

Critical Impact

Systems using the f81604 CAN-to-USB adapter may experience memory leaks that could lead to resource exhaustion and potential denial of service conditions when the affected USB driver handles read bulk callbacks.

Affected Products

  • Linux kernel with f81604 CAN USB driver
  • Systems using Fintek F81604 CAN-to-USB adapters
  • Linux distributions with affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-23347

Vulnerability Analysis

This vulnerability is a Memory Leak issue within the Linux kernel's USB subsystem, specifically affecting the f81604 CAN (Controller Area Network) driver. The f81604 driver manages Fintek CAN-to-USB adapters, which are commonly used in industrial control systems, automotive diagnostics, and embedded development environments.

The core issue stems from improper URB (USB Request Block) lifecycle management. In the Linux USB subsystem, URBs are used to transfer data between the kernel and USB devices. The anchor pattern is a mechanism that allows the kernel to track and manage groups of URBs, enabling operations like killing all pending URBs when a device is disconnected or during error recovery.

When a URB is submitted without being anchored first, a race condition can occur. If usb_kill_anchored_urbs() is called between the URB allocation and its submission, the URB will not be properly cleaned up because it was never added to the anchor list. This results in the URB remaining allocated in memory indefinitely, causing a memory leak.

Root Cause

The root cause is an incorrect ordering of operations in the read bulk callback function. The proper sequence should be: (1) allocate URB, (2) anchor URB to the anchor list, (3) submit URB. However, the vulnerable code path in the read bulk callback was submitting the URB before anchoring it, violating the anchor pattern contract. This inconsistency existed only in the read bulk callback while other code paths in the same driver correctly implemented the anchor-before-submit pattern.

Attack Vector

The attack vector for this vulnerability is primarily local, requiring physical access to connect a USB device or the ability to trigger USB device events. An attacker with local access could potentially:

  1. Repeatedly trigger the read bulk callback by sending CAN traffic through a connected f81604 device
  2. Cause usb_kill_anchored_urbs() to be invoked through device disconnection or error injection
  3. Accumulate memory leaks over time, eventually leading to system resource exhaustion

The vulnerability is described as requiring specific conditions to trigger, involving the timing between URB submission and anchor operations. In practical terms, exploitation would require sustained interaction with the affected USB device to accumulate enough leaked memory to impact system stability.

Detection Methods for CVE-2026-23347

Indicators of Compromise

  • Gradual memory consumption increase on systems with f81604 CAN USB adapters connected
  • Kernel memory allocation warnings or out-of-memory conditions in systems using CAN interfaces
  • Abnormal USB subsystem behavior or URB-related kernel log messages

Detection Strategies

  • Monitor kernel memory allocations in the USB subsystem using tools like kmemleak
  • Review system logs for URB-related warnings or memory allocation failures
  • Track memory usage patterns on systems with f81604 devices during CAN traffic processing

Monitoring Recommendations

  • Implement memory usage monitoring on systems using CAN-to-USB adapters
  • Set alerts for gradual memory increases that don't correlate with normal workload patterns
  • Monitor /proc/meminfo and /proc/slabinfo for USB-related memory allocations

How to Mitigate CVE-2026-23347

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Disconnect f81604 CAN USB adapters from critical systems until patched
  • Monitor affected systems for signs of memory exhaustion

Patch Information

Multiple kernel commits have been released to address this vulnerability. The fix ensures that URBs are properly anchored before submission in the read bulk callback, consistent with the pattern used elsewhere in the driver. Patches are available through the official kernel git repository:

  • Kernel Commit 54ee7430
  • Kernel Commit 7724645c
  • Kernel Commit 952caa5d
  • Kernel Commit c001214e
  • Kernel Commit f6d80b10

Workarounds

  • Unload the f81604 kernel module when not actively required using modprobe -r f81604
  • Implement periodic system reboots on affected systems to clear accumulated memory leaks
  • Use alternative CAN interfaces that don't rely on the affected f81604 driver if available

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 Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes

  • Kernel Commit Changes
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

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

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

  • CVE-2026-31435: Linux Kernel Read Abandonment 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