PatchSiren cyber security CVE debrief
CVE-2026-81008 Linux CVE debrief
A use-after-free vulnerability was found in the Linux kernel's interconnect subsystem. When the dynamic allocation for path->name fails, the error handling path directly calls kfree(path) to free the path object, but prior to this point, path_find() calls path_init(), which links the path's requests into the req_list of the respective interconnect nodes. This leaves dangling pointers in the hlist, causing a slab use-after-free when a subsequent call to icc_get() or icc_set_bw() is made.
- Vendor
- Linux
- Product
- Linux kernel
- CVSS
- HIGH 7.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-09-11
- Original CVE updated
- 2026-09-11
- Advisory published
- 2026-09-11
- Advisory updated
- 2026-09-11
Who should care
Defenders responsible for Linux kernel security, interconnect configuration, and system monitoring should assess exposure and prioritize verification and patching. This includes operators managing Linux-based systems, platform administrators, vulnerability management teams, and security teams that need to ensure the integrity of their systems and data.
Why it matters
A use-after-free vulnerability in the Linux kernel's interconnect subsystem requires verification and patching to prevent potential system crashes, instability, or unauthorized access.
- Potential system crashes or instability due to use-after-free
- Possible elevation of privileges or unauthorized access
- Required verification of patch application and interconnect configurations
- Potential impact on system performance or availability
Technical summary
The Linux kernel's interconnect subsystem is vulnerable to a use-after-free attack. When the dynamic allocation for path->name fails, the error handling path directly calls kfree(path) to free the path object, but prior to this point, path_find() calls path_init(), which links the path's requests into the req_list of the respective interconnect nodes. This leaves dangling pointers in the hlist, causing a slab use-after-free when a subsequent call to icc_get() or icc_set_bw() is made.
Defensive priority
Defenders should prioritize verifying and applying the patch to the Linux kernel, as well as reviewing and updating their interconnect configurations to prevent exploitation.
Recommended defensive actions
- Verify and apply the patch to the Linux kernel
- Review and update interconnect configurations
- Monitor for potential exploitation attempts
- Perform a thorough review of system logs to detect any potential exploitation attempts
- Check for any unusual activity in system performance or availability
- Review asset inventory to ensure all affected systems are accounted for
- Implement compensating controls for exposed systems while remediation is scheduled and verified
Evidence notes
The vulnerability was reported via KASAN, which showed a slab-use-after-free in path_find+0x6f8/0xcfc. The fix involves replacing kfree(path) with the proper teardown function, icc_put(path), which safely removes the requests from the req_list and drops the provider usage references before freeing the memory.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-81008 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-81008
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-81008 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-81008
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/25c7e242aca084fdc1098248194032317dca625d
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/a4e9aa7907ade87d1d96853d14e05dcf682f8363
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/d715d19cfcfe99f361adb05cefc143a95d400b87
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/db8147c5d5ad2cfa21c2be566f95981b41b05de6
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.