Junglewise Threat Intelligence

CVE-2026-64452: Linux Kernel use-after-free in 6LoWPAN NHC uncompression

CVE-2026-64452 · Severity: info · CVSS 0 · Published 2026-07-25

Technologies: Linux. Vendors: Linux.

Executive brief

A vulnerability was identified in the Linux kernel's 6LoWPAN networking component, which is used to enable IPv6 communication over low-power wireless networks like Bluetooth. A technical flaw in how the system handles malformed network packets could lead to a system crash or instability. This issue primarily affects devices using specific wireless protocols and has been resolved in recent kernel updates.

Technical details

A use-after-free (UAF) vulnerability exists in net/6lowpan/nhc.c within the lowpan_nhc_do_uncompression() function. The root cause is a race condition where the 'lowpan_nhc_lock' is released before accessing 'nhc->name' in an error path. If a concurrent task unregisters and frees the NHC descriptor (via lowpan_nhc_del) after the lock is dropped but before the name is printed, a UAF occurs. This is particularly reachable via the Bluetooth 6LoWPAN L2CAP receive path, which may not be covered by standard network RX RCU critical sections. The fix involves moving the diagnostic print statement inside the locked section to ensure the descriptor remains valid during access.

Affected products

  • Linux Linux 92aa7c65d295 to 9c2f5c0829a8, 80b5c8779ace, cc27aea4d454, a8e3a9471113, 593b78bb3c7e, 0beccbcf50de

Timeline

  • 2026-06-09: other: Vulnerability reported by researchers
  • 2026-07-18: patched: Fix committed to stable kernel trees
  • 2026-07-25: disclosed: CVE published

References