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

CVE-2026-43051: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43051 is a buffer overflow flaw in the Linux Kernel's Wacom HID driver that allows out-of-bounds reads via malformed Bluetooth reports. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43051 Overview

CVE-2026-43051 is an out-of-bounds read vulnerability in the Linux kernel's Wacom Human Interface Device (HID) driver. The flaw resides in the wacom_intuos_bt_irq() function, which processes Bluetooth HID reports from Wacom Intuos tablets without sufficient bounds checking. A maliciously crafted short HID report can trigger an out-of-bounds read when the driver copies data into the wacom structure. Report ID 0x03 requires at least 22 bytes for safe processing, while report 0x04 falls through to 0x03 and requires 32 bytes. The vulnerability is tracked under [CWE-125] (Out-of-bounds Read) and affects Linux kernel versions including the 7.0 release candidates.

Critical Impact

An attacker within Bluetooth range can send crafted short HID reports to trigger kernel memory disclosure or denial of service on systems with paired Wacom Intuos devices.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.0-rc1 through 7.0-rc4
  • Systems using the hid-wacom driver with Bluetooth-paired Wacom Intuos tablets

Discovery Timeline

  • 2026-05-01 - CVE-2026-43051 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43051

Vulnerability Analysis

The wacom_intuos_bt_irq() function in the Linux kernel's hid-wacom driver handles incoming Bluetooth HID interrupt reports from Wacom Intuos devices. The function dispatches processing based on the report ID byte but does not validate that the report buffer contains enough bytes for the subsequent field accesses.

For report ID 0x03, the handler reads processed pen data and battery status fields that require a minimum buffer length of 22 bytes. Report ID 0x04 falls through to the same handling logic but requires 32 bytes due to additional fields. When a short report is delivered, the driver reads past the end of the allocated report buffer.

The out-of-bounds read can leak adjacent kernel memory contents into driver state or trigger a kernel oops depending on memory layout. The fix introduces explicit length checks for these report IDs and logs a warning when a short report is received.

Root Cause

The root cause is missing input validation on attacker-controlled HID report length. The driver trusts that any report tagged with ID 0x03 or 0x04 contains the full expected payload. The Bluetooth HID transport allows peers to send arbitrarily sized reports, so a paired or spoofed device can deliver truncated frames that bypass the implicit length assumption in the parser.

Attack Vector

Exploitation requires adjacent network access via Bluetooth to a target system with a paired Wacom Intuos tablet or to a system willing to pair with a hostile peer. No authentication or user interaction is required once the device is associated. The attacker sends a malformed short HID input report carrying report ID 0x03 or 0x04. The kernel's wacom_intuos_bt_irq() handler processes the report and reads beyond the supplied buffer, producing information disclosure of kernel memory or a kernel crash that results in denial of service.

No public proof-of-concept code is available. Technical details of the corrective patches are documented in the upstream stable tree commits referenced by the kernel maintainers.

Detection Methods for CVE-2026-43051

Indicators of Compromise

  • Kernel log entries containing warnings about short Wacom HID reports after applying the patch, indicating attempted exploitation or malformed device traffic.
  • Unexpected kernel oops or stack traces referencing wacom_intuos_bt_irq in dmesg or /var/log/kern.log.
  • Bluetooth pairing events with unfamiliar devices identifying themselves as Wacom Intuos peripherals.

Detection Strategies

  • Monitor kernel ring buffer output for warnings emitted by the patched hid-wacom driver when short reports are received.
  • Inventory endpoints running vulnerable kernel versions and correlate with Bluetooth HID device usage to scope exposure.
  • Use eBPF tracing on the wacom_intuos_bt_irq symbol to record report sizes and source device addresses for forensic review.

Monitoring Recommendations

  • Forward kernel logs to a centralized analytics platform and alert on wacom driver warnings or oops events.
  • Track installed kernel package versions across the fleet and flag hosts that have not received the upstream stable backport.
  • Audit Bluetooth pairing records on Linux endpoints to detect unauthorized HID device associations.

How to Mitigate CVE-2026-43051

Immediate Actions Required

  • Apply the latest stable kernel update from your Linux distribution that incorporates the upstream hid-wacom length-check patches.
  • Unpair untrusted Bluetooth Wacom devices and disable Bluetooth on systems that do not require it.
  • Restrict physical and radio-range access to systems with paired Wacom tablets while patches are pending.

Patch Information

The Linux kernel maintainers fixed the issue by adding explicit length checks for report IDs 0x03 and 0x04 in wacom_intuos_bt_irq() and logging a warning when a short report is received. Backports are available across multiple stable branches. See the upstream commits: Kernel commit 2f1763f6, Kernel commit 3d78386b, Kernel commit 41026bcc, Kernel commit 5b5b9730, Kernel commit 8bd690ac, Kernel commit c8dc23c9, Kernel commit d0ae84b3, and Kernel commit fa8901cb.

Workarounds

  • Blacklist the hid-wacom (or wacom) kernel module on systems that do not require Wacom tablet support.
  • Disable the Bluetooth stack via systemctl disable --now bluetooth on hosts where wireless HID peripherals are not needed.
  • Limit Bluetooth pairing to known device addresses and require administrator approval for new HID associations.
bash
# Configuration example: blacklist the wacom module and disable Bluetooth
echo "blacklist wacom" | sudo tee /etc/modprobe.d/blacklist-wacom.conf
sudo modprobe -r wacom
sudo systemctl disable --now bluetooth.service

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 Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Vendor Resources
  • Kernel Git Commit Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

  • Kernel Git Commit Update 6

  • Kernel Git Commit Update 7

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

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

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

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