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

CVE-2026-46236: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-46236 is a buffer overflow flaw in the Linux kernel's Xbox remote driver that violates DMA coherency rules. This article covers the technical details, affected versions, security impact, and mitigation steps.

Published: May 28, 2026

CVE-2026-46236 Overview

CVE-2026-46236 affects the Linux kernel media: rc: xbox_remote driver. The driver places an I/O buffer inside the device structure, which violates Direct Memory Access (DMA) coherency rules. Embedding DMA buffers within larger allocations can cause cache line sharing between the buffer and adjacent struct members. This sharing leads to data corruption on architectures with non-coherent DMA. The kernel maintainers resolved the issue by separating the DMA buffer from the device structure across multiple stable branches.

Critical Impact

Improper DMA buffer placement in the xbox_remote driver can corrupt kernel memory adjacent to the buffer, leading to undefined driver behavior or potential kernel instability on systems with non-coherent DMA.

Affected Products

  • Linux kernel media: rc: xbox_remote driver
  • Multiple stable kernel branches receiving backported fixes
  • Systems using Xbox remote receivers with non-coherent DMA architectures

Discovery Timeline

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

Technical Details for CVE-2026-46236

Vulnerability Analysis

The vulnerability resides in the xbox_remote infrared remote control driver under drivers/media/rc/. The driver allocated its USB I/O buffer as a field within the larger device structure. The DMA API requires that buffers used for streaming DMA reside in their own allocation, separated from other data by at least a cache line. When a DMA buffer shares a cache line with other struct members, cache invalidation operations triggered by the device can discard CPU writes to those neighboring members. Likewise, CPU writes to neighboring members can be overwritten when the DMA hardware completes a transfer. This produces silent memory corruption that is difficult to diagnose.

Root Cause

The root cause is a violation of Linux DMA coherency rules in the xbox_remote driver. Placing the DMA buffer inside the device structure makes the buffer share cache lines with adjacent fields. On architectures without hardware cache coherency for DMA, this layout produces inconsistent views of memory between the CPU and the USB controller.

Attack Vector

No remote attack vector is documented for this issue. The fault triggers during normal driver operation when an Xbox remote receiver performs USB transfers. Impact is limited to systems with the affected driver loaded and non-coherent DMA hardware. The fix is tracked across kernel commits 0bd8ac88, 0cc92518, 48a668c2, 63a960b3, and e280d1e5. See the Kernel Git Commit 0bd8ac88 for the upstream change.

No verified exploitation code is available. The fix allocates the DMA buffer with kmalloc separately from the device structure so it occupies its own cache lines.

Detection Methods for CVE-2026-46236

Indicators of Compromise

  • Unexplained kernel log entries referencing the xbox_remote driver or USB transfer errors on systems with Xbox remote receivers.
  • Sporadic data corruption in driver state or input event reporting from the rc subsystem.
  • Kernel warnings from DMA debugging facilities (CONFIG_DMA_API_DEBUG) flagging the xbox_remote driver.

Detection Strategies

  • Audit running kernel versions across the fleet and compare against the patched stable branches referenced in the upstream commits.
  • Enable CONFIG_DMA_API_DEBUG in lab environments to identify drivers performing DMA on buffers that share allocations with other structures.
  • Review module load events for xbox_remote on systems that do not require Xbox remote functionality.

Monitoring Recommendations

  • Collect kernel ring buffer logs centrally and alert on xbox_remote or usbcore error patterns.
  • Track package and kernel update status on Linux endpoints through configuration management telemetry.
  • Monitor for module insertion events on hardened systems where xbox_remote should not be loaded.

How to Mitigate CVE-2026-46236

Immediate Actions Required

  • Apply the kernel update from your Linux distribution that includes one of the upstream fix commits listed in the references.
  • On systems that do not use Xbox remote receivers, blacklist the xbox_remote module to remove exposure entirely.
  • Reboot affected hosts after patching so the corrected driver code is loaded.

Patch Information

Fixes were merged across multiple stable kernel branches. Reference commits include Kernel Git Commit 0bd8ac88, Kernel Git Commit 0cc92518, Kernel Git Commit 48a668c2, Kernel Git Commit 63a960b3, and Kernel Git Commit e280d1e5. Use the kernel package provided by your distribution that includes the corresponding backport.

Workarounds

  • Disable autoloading of the xbox_remote module on hosts that do not need it by adding a modprobe blacklist entry.
  • Unplug Xbox remote USB receivers from production hosts until the kernel is patched.
  • Restrict physical access to USB ports on systems where the driver cannot be removed.
bash
# Blacklist the xbox_remote module until the kernel is patched
echo "blacklist xbox_remote" | sudo tee /etc/modprobe.d/blacklist-xbox_remote.conf
sudo depmod -a
sudo update-initramfs -u
# Verify the module is not loaded
lsmod | grep xbox_remote

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit 0cc92518

  • Kernel Git Commit 48a668c2

  • Kernel Git Commit 63a960b3

  • Kernel Git Commit e280d1e5
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46234: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-46232: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow 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