CVE-2026-43016
Use-After-Free in Linux Kernel BPF sockmap
Publication date: 2026-05-01
Last updated on: 2026-05-07
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | From 6.13 (inc) to 6.18.22 (exc) |
| linux | linux_kernel | From 6.19 (inc) to 6.19.12 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.81 (exc) |
| linux | linux_kernel | From 5.15 (inc) to 6.6.134 (exc) |
Helpful Resources
Exploitability
| 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 Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free issue in the Linux kernel's BPF sockmap implementation. Specifically, it occurs in the function sk_psock_verdict_data_ready(), where the code accesses a socket structure (sk->sk_socket) after it has been freed. The problem arises because the peer socket's sk_socket might be freed after one RCU grace period, but the code does not properly prevent this from happening before accessing it.
The issue was reported by syzbot and involves the AF_UNIX socket's sk_socket being used after it has been freed, which can lead to memory corruption or kernel crashes.
How can this vulnerability impact me? :
This use-after-free vulnerability can lead to instability in the Linux kernel, including potential kernel crashes or memory corruption. Such issues can cause denial of service by crashing the system or may be exploitable by attackers to execute arbitrary code with kernel privileges, depending on the context and exploitability.