CVE-2026-31701
Last modified
CVE-2026-31701 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ALSA: caiaq: take a reference on the USB device in create_card() The caiaq driver stores a pointer to the parent USB device in cdev->chip.dev but never takes a reference on it. The card's private_free callback, snd_usb_caiaq_card_free(), can run asynchronously via snd_card_free_when_closed() after the USB device has already been disconnected and freed, so any access to cdev->chip.dev in that path dereferences a freed usb_device. On top of the refcounting issue, the current card_free implementation calls usb_reset_device(cdev->chip.dev). EPSS estimates a 0.12% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ALSA: caiaq: take a reference on the USB device in create_card() The caiaq driver stores a pointer to the parent USB device in cdev->chip.dev but never takes a reference on it. The card's private_free callback, snd_usb_caiaq_card_free(), can run asynchronously via snd_card_free_when_closed() after the USB device has already been disconnected and freed, so any access to cdev->chip.dev in that path dereferences a freed usb_device. On top of the refcounting issue, the current card_free implementation calls usb_reset_device(cdev->chip.dev). A reset in a free callback is inappropriate: the device is going away, the call takes the device lock in a teardown context, and the reset races with the disconnect path that the callback is already cleaning up after. Take a reference on the USB device in create_card() with usb_get_dev(), drop it with usb_put_dev() in the free callback, and remove the usb_reset_device() call.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 6.13, < 6.18.25 | — |
| Linux | Linux Kernel | >= 6.19, < 7.0.2 | — |
| Linux | Linux Kernel | 6.13 | — |
| Linux | Linux Kernel | 7.1 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Modified
Frequently Asked Questions
What is CVE-2026-31701?
How severe is CVE-2026-31701?
How do I fix CVE-2026-31701?
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-31696In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-31697In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-31698In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-31699In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-3170A vulnerability was detected in SourceCodester/Patrick Mvuma…4.8
- CVE-2026-31700In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-31702In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-31703In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-31704In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2026-31705In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-31706In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-31707In the Linux kernel, the following vulnerability has been re…7.1
Are you affected by CVE-2026-31701?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
