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

CVE-2026-46091: Linux Kernel DMA Coherency Vulnerability

CVE-2026-46091 is a DMA coherency flaw in the Linux kernel's igorplugusb media driver that affects USB request handling. This post explains its technical details, affected versions, impact, and mitigation steps.

Published: May 28, 2026

CVE-2026-46091 Overview

CVE-2026-46091 affects the Linux kernel's igorplugusb infrared remote control USB driver located under drivers/media/rc/. The driver issued USB control requests using a request structure that did not follow Direct Memory Access (DMA) coherency rules. On host controllers (HCs) that perform DMA on the USB request structure, this can produce undefined behavior, memory corruption, or unreliable device operation. Maintainers resolved the issue by allocating the USB control request structure separately so it satisfies DMA coherency requirements. The fix was applied across multiple stable kernel branches.

Critical Impact

Improper DMA buffer handling in the igorplugusb driver may cause memory corruption or unstable kernel behavior on USB host controllers that DMA the control request structure.

Affected Products

  • Linux kernel drivers/media/rc/igorplugusb.c infrared receiver driver
  • Systems using Igor Plug USB IR receivers on host controllers that perform DMA on control transfer structures
  • Multiple stable Linux kernel branches prior to the referenced fix commits

Discovery Timeline

  • 2026-05-27 - CVE-2026-46091 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46091

Vulnerability Analysis

The igorplugusb driver sends USB control requests to communicate with the IR receiver hardware. A USB control request is described by a struct usb_ctrlrequest (the 8-byte setup packet) that the host controller transmits during the SETUP stage of a control transfer. On host controllers that move this structure via DMA, the memory backing the structure must follow kernel DMA coherency rules, meaning it must not share a cache line with unrelated data and must be allocated from a DMA-capable region.

In the vulnerable code, the request structure was not allocated separately and did not honor these rules. When the USB core or HCD layer mapped the structure for DMA, cache line sharing with surrounding data could trigger cache coherency problems. The result is potential corruption of adjacent memory, stale data being transmitted on the bus, or driver malfunction. While this is primarily a stability and correctness issue, kernel memory corruption flaws can have security implications in multi-tenant or attacker-controlled-device scenarios.

Root Cause

The root cause is improper allocation of a DMA-accessible buffer. The struct usb_ctrlrequest was embedded in a structure that did not meet DMA coherency requirements (kernel driver vulnerability class). The remediation allocates the control request as a standalone, DMA-safe buffer.

Attack Vector

No public exploitation technique is documented and no proof-of-concept is available. The flaw requires presence of the igorplugusb IR USB device or an attacker-controlled USB device that binds to this driver. Triggering corruption depends on the behavior of the underlying USB host controller. See the upstream commits for technical details: Kernel Git Commit 0adac0e and Kernel Git Commit eac6947.

Detection Methods for CVE-2026-46091

Indicators of Compromise

  • No specific runtime indicators of compromise are published for this vulnerability.
  • Unexpected kernel log entries referencing igorplugusb, USB control transfer failures, or DMA-related warnings on systems with IR receivers may indicate the buggy code path is in use.

Detection Strategies

  • Inventory Linux hosts to identify kernels predating the fix commits referenced in the kernel.org stable tree.
  • Check whether the igorplugusb module is loaded using lsmod | grep igorplugusb and verify the running kernel version with uname -r.
  • Compare installed kernel package versions against distribution security advisories that incorporate the upstream patches.

Monitoring Recommendations

  • Monitor dmesg for USB control transfer errors, IR driver probe failures, or memory corruption warnings (KASAN, slab errors) on systems with IR USB hardware.
  • Track USB device enumeration events in audit logs to detect connection of unexpected USB devices that may bind to the igorplugusb driver.

How to Mitigate CVE-2026-46091

Immediate Actions Required

  • Apply the latest stable Linux kernel update from your distribution that incorporates the upstream fix commits.
  • If patching is not immediately possible, blacklist the igorplugusb module on hosts that do not require IR remote functionality.
  • Restrict physical and virtual USB device access on servers and workstations where untrusted USB hardware could be attached.

Patch Information

The vulnerability is resolved upstream by allocating the USB control request structure separately so it conforms to DMA coherency rules. Fix commits are available in the kernel stable tree: Kernel Git Commit 0adac0e, Kernel Git Commit 0be8fcd, Kernel Git Commit 18d6a7c, Kernel Git Commit a62ca67, and Kernel Git Commit eac6947. Install the corresponding distribution-provided kernel package and reboot.

Workarounds

  • Prevent the vulnerable driver from loading by adding blacklist igorplugusb to a file under /etc/modprobe.d/ on systems that do not need IR receiver support.
  • Enforce USB device control policies (for example USBGuard) to prevent unauthorized USB devices from binding to kernel drivers.
bash
# Configuration example: blacklist the igorplugusb module
echo "blacklist igorplugusb" | sudo tee /etc/modprobe.d/blacklist-igorplugusb.conf
sudo rmmod igorplugusb 2>/dev/null || true
sudo update-initramfs -u

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

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 0adac0e

  • Kernel Git Commit 0be8fcd

  • Kernel Git Commit 18d6a7c

  • Kernel Git Commit a62ca67

  • Kernel Git Commit eac6947
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
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