CVE-2026-89624
Last modified
CVE-2026-89624 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: HID: universal-pidff: stop the device when force-feedback init fails universal_pidff_probe() starts the device with hid_hw_start() and then, if force-feedback initialisation fails, returns the error through a label that only does "return error". The device is left started. The HID core does not unwind on the driver's behalf. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: HID: universal-pidff: stop the device when force-feedback init fails universal_pidff_probe() starts the device with hid_hw_start() and then, if force-feedback initialisation fails, returns the error through a label that only does "return error". The device is left started. The HID core does not unwind on the driver's behalf. __hid_device_probe() releases the devres group, closes the report and clears hdev->driver: if (ret) { devres_release_group(&hdev->dev, hdev->devres_group_id); hid_close_report(hdev); hdev->driver = NULL; } The hidraw character device that hid_hw_start() registered through hid_connect() is allocated with kzalloc() and added with cdev_device_add(), so it is not devres-managed and survives that. With hdev->driver NULL, hid_device_remove() skips hid_hw_stop() as well, because it only unwinds while a driver is still attached. The registration therefore outlives the device on both paths. Opening the surviving /dev/hidrawX writes into freed memory. KASAN reports a use-after-free write from hidraw_open() -> hid_hw_open() -> the transport's open callback, which takes a spinlock inside the freed object. A descriptor that carries a PID usage page and no input reports is enough: hidraw claims the device so hid_hw_start() succeeds, while hid->inputs stays empty so force-feedback init fails. The other failure returns in hid_pidff_init_with_quirks() - no output reports, an allocation failure, pidff_init_fields(), pidff_check_autocenter(), an unusable effect count, input_ff_create() - all reach the same label. Stop the device on that path. hid-dr.c and hid-emsff.c, which start the device with the same HID_CONNECT_DEFAULT & ~HID_CONNECT_FF mask, already do this. The two earlier gotos must keep returning without hid_hw_stop(), since neither has a started device, so give the path that fails after the start its own label. Discovered by XBOW, triaged by Baul Lee <baul.lee@xbow.com>
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f45f26a6b3e7260c129c7c6bb0ace63aeb7b3868, < 519fa26695b02870022fcdc651efb3d379abe54e; >= f06bf8d94fffbb544b1cb5402c92e0a075f0d420, < 01d9874e84d3ab78fd212ad822412eb3af84497f; >= f06bf8d94fffbb544b1cb5402c92e0a075f0d420, < c457bb516b61edeab940235a011928e26925381e; >= f06bf8d94fffbb544b1cb5402c92e0a075f0d420, < ce08c5555cabcd444d8b77fa69a7cb68bb05f611; c1fde337b317f0a226de92803288741c30799eb0; af9f2471dfe5a48384f5b7f021a673fbc741465e; b797352954eee6dc084cfaed0659dea60adfb484; >= 6.12.24, < 6.12.111; >= 6.6.88, < 6.7; >= 6.13.12, < 6.14; >= 6.14.3, < 6.15 |
| Linux | Linux | 6.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89624?
How severe is CVE-2026-89624?
How do I fix CVE-2026-89624?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89619In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-8962Mitigation bypass in the DOM: Security component. This vulne…8.1
- CVE-2026-89620In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89621In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89622In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89623In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89625In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89626In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-89627In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89628In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89629In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8963Spoofing issue in the Web Speech component. This vulnerabili…7.5
Are you affected by CVE-2026-89624?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
