A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46228

CVE-2026-46228: Linux Kernel Privilege Escalation Flaw

CVE-2026-46228 is a privilege escalation vulnerability in the Linux kernel's SPI ch341 driver that causes resource lifetime issues. This article covers the technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46228 Overview

CVE-2026-46228 affects the Linux kernel spi: ch341 driver, where device-managed resources were incorrectly tied to the parent USB device instead of the USB interface. USB drivers bind to USB interfaces, so resources scoped to the parent device persist beyond driver unbind events. This mismatch can produce memory leaks when the driver is unbound without the physical device being disconnected, such as during probe deferral or USB configuration changes. The fix re-scopes the controller and driver data lifetime to the USB interface, ensuring proper release on unbind and correctly placing the SPI controller under the USB interface in the device tree.

Critical Impact

Incorrect devres lifetime in the ch341 SPI driver causes kernel memory leaks on driver unbind, degrading system stability over time on hosts using CH341-based USB-to-SPI adapters.

Affected Products

  • Linux kernel versions containing the spi-ch341 USB-to-SPI driver prior to the fix
  • Systems using CH341 USB-to-SPI bridge adapters
  • Distributions shipping the affected upstream kernel revisions

Discovery Timeline

  • 2026-05-28 - CVE-2026-46228 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46228

Vulnerability Analysis

The vulnerability resides in the spi-ch341 driver, which provides Serial Peripheral Interface (SPI) controller support over a CH341 USB bridge. USB drivers in the Linux kernel bind to USB interfaces rather than the parent USB device. Device-managed (devres) allocations must therefore use the interface as the parent so that the kernel releases them when the driver unbinds from that interface.

In the affected code, the SPI controller and associated driver data were allocated with the parent USB device as the devres anchor. As a result, those allocations were not freed when the driver was unbound while the USB device remained enumerated. This commonly occurs during probe deferral, when configuration changes trigger re-probe, or when the driver is manually unbound through sysfs. Each unbind/rebind cycle leaks the controller structure and related driver state, with [CWE-401] memory leak semantics.

A secondary consequence is incorrect device tree topology: the SPI controller appeared under the USB device instead of the USB interface, which can confuse userspace tools and sysfs consumers.

Root Cause

The root cause is incorrect parent selection for devm_* allocations in the ch341 SPI driver. Tying device-managed resources to the USB device rather than the USB interface decouples their lifetime from the driver's bind state on the interface.

Attack Vector

This is a local reliability issue rather than a remotely exploitable flaw. Triggering the leak requires the ability to cause repeated bind/unbind cycles of the spi-ch341 driver, for example through sysfs bind/unbind writes or repeated probe deferral conditions, on a system with a CH341 USB-to-SPI adapter attached. See the upstream commits referenced below for the corrected resource ownership.

The vulnerability is described in prose because no verified proof-of-concept code is published. Refer to the Git Kernel Commit 108a64b, Git Kernel Commit 4422fc2, and Git Kernel Commit abe572f for the applied fixes.

Detection Methods for CVE-2026-46228

Indicators of Compromise

  • Growing kernel slab usage attributable to spi-ch341 allocations across driver bind/unbind cycles.
  • Presence of CH341 USB devices (USB vendor/product 1a86:5512) on hosts running an unpatched kernel.
  • SPI controller nodes in sysfs appearing under the USB device rather than the USB interface.

Detection Strategies

  • Compare the running kernel version against the fixed commits referenced in the NVD entry to confirm exposure.
  • Use kmemleak or slabtop to identify retained allocations after unbinding spi-ch341 from an attached CH341 adapter.
  • Inspect /sys/bus/usb/drivers/spi-ch341/ and the device tree path of the resulting SPI controller to verify correct interface parenting.

Monitoring Recommendations

  • Track kernel memory growth on systems that hot-plug or re-probe CH341-based SPI adapters in development or lab environments.
  • Alert on repeated spi-ch341 probe deferral messages in dmesg, which can accelerate leak accumulation.
  • Inventory endpoints and embedded hosts using CH341 USB-to-SPI bridges to scope patch deployment.

How to Mitigate CVE-2026-46228

Immediate Actions Required

  • Upgrade to a Linux kernel that includes the upstream fixes referenced by commits 108a64b, 4422fc2, and abe572f.
  • On systems that cannot patch immediately, avoid repeated bind/unbind cycles of the spi-ch341 driver.
  • Restrict local user access to sysfs driver bind/unbind interfaces, which require CAP_SYS_ADMIN.

Patch Information

The issue is resolved upstream in the Linux kernel. Apply a distribution kernel update that incorporates the commits listed in the NVD references: Git Kernel Commit 108a64b, Git Kernel Commit 4422fc2, and Git Kernel Commit abe572f. The fix changes devres allocations in spi-ch341 to use the USB interface as the parent device.

Workarounds

  • Unload the spi-ch341 module entirely (rmmod spi_ch341) when the adapter is not in active use to release accumulated allocations.
  • Physically disconnect CH341 adapters rather than triggering driver unbind via sysfs on unpatched kernels.
  • Limit configurations that cause probe deferral on the USB subsystem to reduce leak frequency until patching completes.

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Git Kernel Commit 108a64b

  • Git Kernel Commit 4422fc2

  • Git Kernel Commit abe572f
  • Related CVEs
  • CVE-2026-46225: Linux Kernel RSPI Privilege Escalation

  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43344: Linux Kernel Privilege Escalation Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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