CVE-2026-46212
Analyzed Analyzed - Analysis Complete
Use-After-Free in Linux Kernel batman-adv BLA

Publication date: 2026-05-28

Last updated on: 2026-06-10

Assigner: kernel.org

Description
In the Linux kernel, the following vulnerability has been resolved: batman-adv: bla: prevent use-after-free when deleting claims When batadv_bla_del_backbone_claims() removes all claims for a backbone, it does this by dropping the link entry in the hash list. This list entry itself was one of the references which need to be dropped at the same time via batadv_claim_put(). But the batadv_claim_put() must not be done before the last access to the claim object in this function. Otherwise the claim might be freed already by the batadv_claim_release() function before the list entry was dropped.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-28
Last Modified
2026-06-10
Generated
2026-06-17
AI Q&A
2026-05-28
EPSS Evaluated
2026-06-16
NVD
EUVD
Affected Vendors & Products
Showing 10 associated CPEs
Vendor Product Version / Range
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 5.16 (inc) to 6.1.175 (exc)
linux linux_kernel From 5.11 (inc) to 5.15.209 (exc)
linux linux_kernel From 6.2 (inc) to 6.6.140 (exc)
linux linux_kernel From 6.13 (inc) to 6.18.32 (exc)
linux linux_kernel From 6.7 (inc) to 6.12.90 (exc)
linux linux_kernel From 6.19 (inc) to 7.0.9 (exc)
linux linux_kernel From 3.5 (inc) to 5.10.258 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-416 The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

This vulnerability exists in the Linux kernel's batman-adv component, specifically in the bla (batadv_bla) module. It involves a use-after-free issue when deleting claims related to a backbone. The function batadv_bla_del_backbone_claims() removes all claims for a backbone by dropping a link entry in a hash list. However, this list entry is also a reference that must be released properly using batadv_claim_put(). If batadv_claim_put() is called too early, before the last access to the claim object, the claim might be freed prematurely by batadv_claim_release(), leading to a use-after-free condition.

Impact Analysis

A use-after-free vulnerability can lead to undefined behavior in the kernel, including potential system crashes, data corruption, or security issues such as privilege escalation or arbitrary code execution. In this specific case, improper handling of claim objects in the batman-adv module could cause instability or exploitation opportunities within the Linux kernel networking stack.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-46212. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart