CVE-2026-89625
Last modified
CVE-2026-89625 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: HID: sony: fix UAF of ghl_poke_timer / ghl_urb at driver unbind For GHL (Guitar Hero Live) dongles, sony_probe() arms a periodic timer: ghl_magic_poke() (the timer callback) submits sc->ghl_urb, and the URB completion ghl_magic_poke_cb() re-arms the timer with mod_timer(). sony_remove() drained the timer with timer_delete_sync() and then freed the URB with usb_free_urb(): timer_delete_sync(&sc->ghl_poke_timer); usb_free_urb(sc->ghl_urb); timer_delete_sync() does not block re-arming, and while the URB is in flight the timer is not pending, so the sync delete is a no-op. A URB completion that runs after the delete re-arms the timer, and usb_free_urb() only drops a reference -- it does not kill an in-flight URB. EPSS estimates a 0.21% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: HID: sony: fix UAF of ghl_poke_timer / ghl_urb at driver unbind For GHL (Guitar Hero Live) dongles, sony_probe() arms a periodic timer: ghl_magic_poke() (the timer callback) submits sc->ghl_urb, and the URB completion ghl_magic_poke_cb() re-arms the timer with mod_timer(). sony_remove() drained the timer with timer_delete_sync() and then freed the URB with usb_free_urb(): timer_delete_sync(&sc->ghl_poke_timer); usb_free_urb(sc->ghl_urb); timer_delete_sync() does not block re-arming, and while the URB is in flight the timer is not pending, so the sync delete is a no-op. A URB completion that runs after the delete re-arms the timer, and usb_free_urb() only drops a reference -- it does not kill an in-flight URB. sc is allocated with devm_kzalloc() and freed once sony_remove() returns, so the re-armed ghl_poke_timer (embedded in sc) then fires on freed memory, a use-after-free from timer softirq. This is a disconnect/rmmod race. Poison the URB first, then shut the timer down, before freeing the URB. usb_poison_urb() kills any in-flight URB and permanently rejects further submissions, so a poke timer that is still pending cannot re-submit the URB from ghl_magic_poke() in the window before timer_shutdown_sync() runs. usb_kill_urb() would not suffice: it only cancels the in-flight URB and leaves it submittable once it returns, so the pending timer could re-submit it and put a fresh URB in flight over the freed sc. timer_shutdown_sync() then drains any last callback and blocks re-arming. The probe error path is unaffected: it is only reached before the timer is armed. Reproduced under KASAN on next-20260710 via dummy_hcd + raw-gadget emulation of the GHL PS4 dongle (VID 0x1430 / PID 0x07bb): hid-sony binds and arms the poke timer, the poke URB is held in flight, the driver is unbound (freeing sc), then the URB is released. The completion re-arms the timer on the freed sc, and the re-armed timer fires ~8 s later: BUG: KASAN: slab-use-after-free in ghl_magic_poke+0x98/0xb0 Read of size 8 at addr ffff88810b02fd50 by task swapper/0/0 ghl_magic_poke+0x98/0xb0 call_timer_fn+0x35/0x2b0 __run_timers+0x69c/0x9a0 run_timer_softirq+0x173/0x2a0 Allocated by task 169: sony_probe Freed by task 338: devres_release_group <- hid_device_remove (sony_remove) Found by 0sec (https://0sec.ai) using automated source analysis.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= cc894ac553605c9193a7a94372ff2f8af5766f46, < 0e3d42ef008f0931e3878b4f1b046b6e45a95bde; >= cc894ac553605c9193a7a94372ff2f8af5766f46, < 114a58640aaf3c2eb97b5b01c75ab5e541d15d9c; >= cc894ac553605c9193a7a94372ff2f8af5766f46, < 3155dc327344d286f17345cd371be05e255a4328; >= cc894ac553605c9193a7a94372ff2f8af5766f46, < a26705bd2e2728833e7a538ce91e58a5eeff496a |
| Linux | Linux | 5.11 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89625?
How severe is CVE-2026-89625?
How do I fix CVE-2026-89625?
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-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-89624In the Linux kernel, the following vulnerability has been re…7.8
- 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
- CVE-2026-89630In the Linux kernel, the following vulnerability has been re…9.1
Are you affected by CVE-2026-89625?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
