CVE-2026-23030
BaseFortify
Publication date: 2026-01-31
Last updated on: 2026-02-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| rockchip | inno_usb2 | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a double free bug in the Linux kernel's rockchip inno-usb2 driver. Specifically, the function rockchip_usb2phy_probe() improperly releases a resource twice due to calling of_node_put() more than once on the same object when an error occurs, which can lead to memory corruption.
How can this vulnerability impact me? :
The double free bug can cause memory corruption, which may lead to system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges if exploited.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version that includes the fix for the double free bug in rockchip_usb2phy_probe(). This fix prevents the duplicate of_node_put() call by returning directly after failure in devm_request_threaded_irq().