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

CVE-2026-46232: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-46232 is a buffer overflow flaw in the Linux kernel's HID playstation driver that allows malicious devices to read beyond array boundaries. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46232 Overview

CVE-2026-46232 is an out-of-bounds read vulnerability in the Linux kernel HID PlayStation driver. The flaw resides in the dualshock4_parse_report function, which processes touch reports from DualShock 4 controllers. The driver trusts the num_touch_reports value supplied by the device without bounds checking. A malicious or malformed device can declare up to 256 touch reports, causing the parser to read approximately 2 KiB past the end of the touch_reports array. The leaked data is then emitted via evdev when the DS4_TOUCH_POINT_INACTIVE bit is set, exposing adjacent kernel memory to userspace.

Critical Impact

A crafted USB or Bluetooth HID device impersonating a DualShock 4 controller can leak up to 2 KiB of adjacent kernel memory to userspace through evdev events.

Affected Products

  • Linux kernel versions containing the HID playstation driver prior to the fixed commits
  • Systems with the hid-playstation module loaded and DualShock 4 controller support enabled
  • Stable kernel branches addressed by commits 0bc4cf1a, 208f6d5b, 78126947, 9c031b24, and cac61b58

Discovery Timeline

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

Technical Details for CVE-2026-46232

Vulnerability Analysis

The vulnerability stems from missing input validation in the HID PlayStation driver's touch report handling logic. The dualshock4_parse_report function iterates over touch report entries based on the num_touch_reports field provided by the connected device. Because the driver does not clamp this value against the actual size of the touch_reports array, a device reporting a large count drives the loop past valid memory.

With a maximum of 256 loop iterations, the parser reads approximately 2 KiB of adjacent kernel heap or stack memory. The driver subsequently forwards portions of this data to userspace through evdev input events whenever the DS4_TOUCH_POINT_INACTIVE bit happens to be set in the out-of-bounds data. This creates a kernel-to-userspace information disclosure primitive classified as Out-of-Bounds Read.

Root Cause

The root cause is unconditional trust in device-supplied metadata. The driver assumes the controller reports a count consistent with the protocol specification. No sanity check enforces that num_touch_reports fits within the fixed-size touch_reports array. The fix clamps num_touch_reports to the maximum array size before the parsing loop executes.

Attack Vector

Exploitation requires a malicious HID device or a compromised peripheral that can present itself as a DualShock 4 controller. This includes physical USB devices, Bluetooth peripherals, or virtualized HID devices. The attacker crafts a report descriptor that declares a num_touch_reports value exceeding the array bounds. Once the device connects and emits a touch report, the kernel reads out-of-bounds memory and exposes it to any userspace process subscribed to the corresponding evdev node.

No verified public exploitation code is available. Technical details of the fix are documented in the upstream kernel commits.

Detection Methods for CVE-2026-46232

Indicators of Compromise

  • Unexpected HID devices presenting DualShock 4 vendor and product identifiers from unknown sources
  • Kernel log entries from the hid-playstation driver coinciding with anomalous input event traffic
  • Userspace processes reading evdev nodes that they do not normally interact with

Detection Strategies

  • Audit loaded kernel modules and verify whether hid-playstation is present on systems that do not require it
  • Monitor udev events and dmesg output for HID device enumeration matching DualShock 4 identifiers on servers or workstations where such devices are not expected
  • Compare running kernel versions against the fixed commits referenced in the upstream stable tree

Monitoring Recommendations

  • Enable USB device authorization policies to log and gate new HID peripherals
  • Track Bluetooth pairing events for HID-class devices in enterprise endpoint telemetry
  • Alert on kernel module load events for hid-playstation outside of approved gaming or testing endpoints

How to Mitigate CVE-2026-46232

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the stable tree commits as soon as distribution updates are available
  • Restrict physical and Bluetooth access to endpoints handling sensitive workloads to prevent malicious HID device attachment
  • Blacklist the hid-playstation module on systems that do not require DualShock controller support

Patch Information

The fix clamps num_touch_reports to the size of the touch_reports array before the parsing loop. The patch is available in upstream Linux stable kernels via the following commits: Kernel Git Commit 0bc4cf1a, Kernel Git Commit 208f6d5b, Kernel Git Commit 78126947, Kernel Git Commit 9c031b24, and Kernel Git Commit cac61b58.

Workarounds

  • Unload the driver with modprobe -r hid_playstation and prevent reload via a modprobe blacklist entry on systems that do not require PlayStation controller functionality
  • Enforce USB authorization policies via /sys/bus/usb/devices/*/authorized to block untrusted HID peripherals
  • Disable Bluetooth HID profile acceptance on servers and high-value endpoints
bash
# Blacklist the hid-playstation module to prevent loading
echo "blacklist hid_playstation" | sudo tee /etc/modprobe.d/blacklist-hid-playstation.conf
sudo modprobe -r hid_playstation

# Verify the module is no longer loaded
lsmod | grep hid_playstation

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 Change

  • Kernel Git Commit Fix

  • Kernel Git Commit Update

  • Kernel Git Commit Improvement

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

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

  • CVE-2026-46234: 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