CVE-2026-23010
BaseFortify
Publication date: 2026-01-25
Last updated on: 2026-04-27
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.11.11 (inc) to 6.12 (exc) |
| linux | linux_kernel | 6.13 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.1.120 (inc) to 6.1.162 (exc) |
| linux | linux_kernel | From 6.12.2 (inc) to 6.12.67 (exc) |
| linux | linux_kernel | From 6.13.1 (inc) to 6.18.7 (exc) |
| linux | linux_kernel | From 6.6.64 (inc) to 6.6.122 (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 bug in the Linux kernel's IPv6 implementation, specifically in the inet6_addr_del() function. It occurs because the function ipv6_del_addr() was called prematurely before reading certain flags, leading to a use-after-free condition on the inet6_ifaddr structure. This means the kernel attempts to access memory that has already been freed, which can cause crashes or unpredictable behavior.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to kernel crashes or instability, potentially causing denial of service. In some cases, such memory corruption issues could be exploited to escalate privileges or execute arbitrary code within the kernel, compromising system security.