CVE-2026-64447
Last modified
CVE-2026-64447 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: staging: media: ipu7: fix double-free and use-after-free in error paths In both ipu7_isys_init() and ipu7_psys_init(), pdata is allocated and then passed to ipu7_bus_initialize_device(), which stores it in adev->pdata. The ipu7_bus_release() function frees adev->pdata when the device's reference count drops to zero. Two error paths incorrectly call kfree(pdata) after the device teardown has already freed it: 1. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: staging: media: ipu7: fix double-free and use-after-free in error paths In both ipu7_isys_init() and ipu7_psys_init(), pdata is allocated and then passed to ipu7_bus_initialize_device(), which stores it in adev->pdata. The ipu7_bus_release() function frees adev->pdata when the device's reference count drops to zero. Two error paths incorrectly call kfree(pdata) after the device teardown has already freed it: 1. When ipu7_mmu_init() fails: put_device() is called, which drops the reference count to zero and triggers ipu7_bus_release() -> kfree(pdata). The subsequent kfree(pdata) is a double-free. 2. When ipu7_bus_add_device() fails: it calls auxiliary_device_uninit() internally, which calls put_device() -> ipu7_bus_release() -> kfree(pdata). The subsequent kfree(pdata) is again a double-free. Note that the kfree(pdata) when ipu7_bus_initialize_device() itself fails is correct, because in that case auxiliary_device_init() failed and the release function was never set up, so pdata must be freed manually. Additionally, the error code was not saved before calling put_device(), causing ERR_CAST() to dereference the already-freed adev pointer when constructing the return value. Fix this by saving the error from dev_err_probe() before put_device() and returning ERR_PTR() instead. Remove the redundant kfree(pdata) calls and fix the use-after-free in the return values of the two affected error paths.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= b7fe4c0019b12d60ece3e99eeb0ccfd5a1d103e5, < b5ddc7257bee71f5b8cf9083e2b0ac0427e9fbb3; >= b7fe4c0019b12d60ece3e99eeb0ccfd5a1d103e5, < 837c1f9655421055f751ed34745e820a54a27642; >= b7fe4c0019b12d60ece3e99eeb0ccfd5a1d103e5, < d3a9a8cf2d7fd61a2f63df61f6cbc0a9bb007cc0 |
| Linux | Linux | 6.17 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-64447?
How severe is CVE-2026-64447?
How do I fix CVE-2026-64447?
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-64441In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-64442In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-64443In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-64444In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-64445In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-64446In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64448In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-64449In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-6445A flaw exists in FlashArray Purity where insufficient filter…8.7
- CVE-2026-64450In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-64451In the Linux kernel, the following vulnerability has been re…
- CVE-2026-64452In the Linux kernel, the following vulnerability has been re…7.1
Are you affected by CVE-2026-64447?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
