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

CVE-2026-43049: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43049 is a use-after-free vulnerability in the Linux Kernel HID logitech-hidpp driver affecting force feedback initialization. This article covers technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-43049 Overview

CVE-2026-43049 is a use-after-free vulnerability [CWE-416] in the Linux kernel's logitech-hidpp HID driver. The flaw occurs during probing of the Logitech G920 Driving Force Racing Wheel for Xbox One. When force feedback initialisation fails, the driver returns an error before tearing down the userspace infrastructure exposed through sysfs and /dev/input. Userspace processes that ignore the error and continue using their references to these dangling entities trigger a use-after-free condition in kernel memory.

Critical Impact

A local attacker with low privileges can leverage stale references to kernel objects to corrupt memory, potentially achieving privilege escalation or kernel-level code execution.

Affected Products

  • Linux Kernel 5.3.9
  • Linux Kernel 5.4 (including release candidates rc6, rc7, rc8)
  • Linux Kernel 7.0 (release candidates rc1 through rc4)

Discovery Timeline

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

Technical Details for CVE-2026-43049

Vulnerability Analysis

The vulnerability resides in the hid-logitech-hidpp driver, which manages communication with Logitech HID++ peripherals including the G920 racing wheel. During the probe routine, the driver registers userspace-facing infrastructure such as sysfs attributes and the /dev/input event device before attempting to initialise force feedback support. When force feedback initialisation fails, the probe function returns an error code without unwinding the previously registered userspace interfaces.

Userspace handles to these objects remain valid from the perspective of the calling process, but the underlying kernel structures may be freed or partially deconstructed. Subsequent reads, writes, or ioctl operations against the dangling file descriptors dereference freed kernel memory, producing a classic use-after-free condition.

Root Cause

The root cause is incomplete cleanup on the error path of the probe function. The driver assumed force feedback initialisation occurred before any user-visible registration, but the ordering allowed the device node and sysfs entries to be exposed first. Kernel maintainers chose to convert the failure into a non-fatal warning, leaving the device functional without force feedback rather than attempting to dismantle every component on error.

Attack Vector

Exploitation requires local access and the ability to interact with HID device probing. An attacker who can attach a vulnerable Logitech device, or trigger probe failures programmatically, can keep file descriptors open across the failed initialisation. Once the kernel objects are freed, the attacker writes to /dev/input or sysfs paths to dereference the stale pointers. Successful exploitation leads to memory corruption in kernel context.

No public proof-of-concept exploit is currently available for CVE-2026-43049.

Detection Methods for CVE-2026-43049

Indicators of Compromise

  • Kernel log entries referencing logitech-hidpp probe failures, force feedback initialisation warnings, or HID++ subsystem errors immediately preceding crashes.
  • Unexpected kernel oops or panic traces involving input_event, sysfs_remove, or HID input device cleanup functions.
  • Unusual process activity holding file descriptors against /dev/input/event* nodes for devices that failed to initialise.

Detection Strategies

  • Monitor dmesg and journalctl -k output for HID++ driver warnings combined with subsequent input subsystem faults.
  • Audit running kernel versions across the fleet against the patched commits to identify exposed hosts.
  • Correlate USB device attachment events with kernel error messages to detect potential exploitation attempts.

Monitoring Recommendations

  • Enable KASAN (Kernel Address Sanitizer) on test systems to surface use-after-free conditions during driver probe sequences.
  • Forward kernel ring buffer logs to a centralised logging platform for retention and pattern analysis.
  • Track HID device attachment events through udev and audit subsystems to flag anomalous peripheral activity on sensitive hosts.

How to Mitigate CVE-2026-43049

Immediate Actions Required

  • Apply the upstream stable kernel patches that resolve the cleanup ordering in hid-logitech-hidpp.
  • Inventory systems running affected kernel versions, prioritising workstations and servers where untrusted users can attach USB devices.
  • Restrict physical and logical USB access on multi-user hosts until patches are deployed.

Patch Information

The Linux kernel maintainers resolved the issue by treating force feedback initialisation failure as a warning while keeping the device functional. The fix is available in the following stable kernel commits: 772f99cc8d6e, 9a793ac19eb8, b846fb0a73e9, and f7a4c78bfeb3. Distribution vendors typically backport these patches to supported kernel branches.

Workarounds

  • Blacklist the hid_logitech_hidpp module on systems that do not require Logitech HID++ peripherals using modprobe.d configuration.
  • Apply USB device access policies through udev rules to restrict which users can attach HID devices.
  • Use USBGuard or equivalent allow-list tooling to block unauthorised peripheral attachment on sensitive endpoints.
bash
# Blacklist the vulnerable driver until kernel is patched
echo "blacklist hid_logitech_hidpp" | sudo tee /etc/modprobe.d/blacklist-hidpp.conf
sudo update-initramfs -u

# Verify the running kernel version against patched commits
uname -r

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • 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
  • CWE References
  • CWE-416
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43048: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43056: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43050: Linux Kernel Use-After-Free 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