CVE Catalog

CVE-2026-64123

HighCVSS 7.8
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.13%

3th percentile - higher than 3% of all known CVEs

Summary

A use-after-free vulnerability was found in the Linux kernel's HSR (High-availability Seamless Redundancy) module. Generic-netlink operations running under rcu_read_lock() can access freed memory during HSR interface teardown (RTM_DELLINK) because the node list is removed with plain list_del() and freed immediately, while RCU readers may still hold pointers to those nodes.

Risk Assessment

An attacker could exploit this vulnerability to access already freed kernel memory, potentially leading to data confidentiality breaches, system crashes (kernel panic), or privilege escalation.

Recommendation

Immediately update the Linux kernel to a version containing the fix, which replaces list_del() with list_del_rcu() and defers node freeing via the existing hsr_free_node_rcu() callback.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: net: hsr: defer node table free until after RCU readers HSR node-list and node-status generic-netlink operations run under rcu_read_lock(). They walk hsr->node_db through hsr_get_next_node() and hsr_get_node_data(), but RTM_DELLINK teardown removes the same node table with plain list_del() and frees each node immediately. That lets a generic-netlink reader hold a struct hsr_node pointer across hsr_dellink(). In a KASAN build, widening the reader window after hsr_get_next_node() obtains the node reproduces a slab-use-after-free when the reader copies node->macaddress_A; the freeing stack is hsr_del_nodes() from hsr_dellink(). Use list_del_rcu() and defer the free through the existing hsr_free_node_rcu() callback. This matches the lifetime rule used by the HSR prune paths, which already delete nodes with list_del_rcu() and call_rcu().

Vulnerability data from NVD (NIST) · CISA KEV · EPSS