The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-43047

CVE-2026-43047: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43047 is a buffer overflow flaw in the Linux kernel HID multitouch driver that can cause out-of-bounds writes. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 7, 2026

CVE-2026-43047 Overview

CVE-2026-43047 is a Linux kernel vulnerability in the HID multitouch driver. The flaw allows a malicious or malfunctioning Human Interface Device (HID) to respond to a feature report request with a different report ID than was requested. This mismatch causes confusion in the HID core and can lead to out-of-bounds (OOB) writes in kernel memory. The issue affects local attack surfaces where an attacker can attach or emulate a USB or Bluetooth HID device. Maintainers resolved the issue by adding a validation check that compares the response report ID against the requested ID and aborts processing on mismatch.

Critical Impact

A crafted HID device can trigger out-of-bounds writes in the Linux kernel HID core, enabling memory corruption with potential for privilege escalation.

Affected Products

  • Linux kernel HID multitouch subsystem (drivers/hid/hid-multitouch.c)
  • Multiple stable Linux kernel branches as referenced in upstream commits
  • Systems exposing HID device attachment (USB, Bluetooth, virtualized HID)

Discovery Timeline

  • 2026-05-01 - CVE-2026-43047 published to NVD
  • 2026-05-03 - Last updated in NVD database

Technical Details for CVE-2026-43047

Vulnerability Analysis

The Linux kernel HID multitouch driver issues feature report requests to attached HID devices to retrieve device-specific data. The driver previously assumed that the responding device would return data tagged with the same report ID that was requested. A malicious device can violate this assumption by responding with an arbitrary report ID. The HID core then processes the mismatched response using sizing and offset assumptions tied to the requested report, producing out-of-bounds writes into kernel memory structures.

The vulnerability requires local access because the attacker needs to attach or emulate an HID device to the target system. Exploitation does not require user interaction once the device is attached. Successful memory corruption in kernel context can compromise confidentiality, integrity, and availability of the host.

Root Cause

The root cause is missing input validation on responses returned from untrusted hardware. The HID multitouch code did not verify that the report ID embedded in a feature response matched the report ID that was solicited. Treating attacker-controlled response data as trusted input violates safe parsing of device protocols.

Attack Vector

An attacker with the ability to connect a USB, Bluetooth, or otherwise emulated HID device to a vulnerable Linux host can deliver crafted feature report responses. Programmable HID hardware such as a Raspberry Pi Pico, Facedancer, or BadUSB-class device can construct the malformed responses. The kernel parses the response in privileged context, producing OOB writes that can be shaped into a kernel exploitation primitive.

No verified public proof-of-concept code is available. Refer to the upstream patch commits for technical details on the affected code paths and the validation logic added by maintainers.

Detection Methods for CVE-2026-43047

Indicators of Compromise

  • Unexpected hid-multitouch warnings, oops messages, or KASAN reports in dmesg referencing report parsing
  • Kernel panics or memory corruption traces correlated with HID device enumeration events
  • Attachment of unfamiliar USB or Bluetooth HID devices to sensitive endpoints, especially programmable microcontroller-class hardware

Detection Strategies

  • Monitor kernel logs for HID subsystem errors, particularly around feature report handling and report ID mismatches
  • Correlate USB device insertion telemetry (udev, usbguard) with subsequent kernel warnings or process crashes
  • Audit running kernel versions across the fleet to identify hosts that have not received the patched HID multitouch code

Monitoring Recommendations

  • Forward dmesg and journald kernel logs to a central platform such as Singularity Data Lake for retention and analysis
  • Track USB and Bluetooth HID enumeration events on servers, kiosks, and workstations where physical access controls are weak
  • Alert on kernel KASAN, slab corruption, or general protection fault messages that name the HID subsystem

How to Mitigate CVE-2026-43047

Immediate Actions Required

  • Apply the upstream Linux kernel patches from the referenced git.kernel.org stable commits and reboot affected systems
  • Inventory hosts running unpatched kernel versions and prioritize servers, multi-user workstations, and shared kiosks
  • Restrict physical access and USB port use on systems handling sensitive data until patches are deployed

Patch Information

The fix adds a check ensuring that the report ID returned by a HID device matches the report ID that was requested. If the IDs do not match, the driver omits raw event reporting and returns early. The patch is distributed across multiple stable branches via commits including 2edc92f89eee, 516da3f25cfe, 6a4acd3e86fe, 74c6015375d8, 7f66fdbc077f, a61163daf8a9, c7a27bb4d0f6, and e716edafedad. See the Linux Kernel Commit Update for the canonical change.

Workarounds

  • Deploy USB device control policies using usbguard to block unauthorized HID devices from attaching
  • Disable Bluetooth HID profile on systems where it is not required to reduce wireless attack surface
  • Enforce physical port lockdown on endpoints in publicly accessible areas pending kernel updates
bash
# Example usbguard policy: allow only known HID devices
sudo apt install usbguard
sudo usbguard generate-policy > /etc/usbguard/rules.conf
sudo systemctl enable --now usbguard
# Review and tighten the generated rules before enabling enforcement

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

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

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

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