CVE-2023-53619
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-05
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | From 6.2 (inc) to 6.4.4 (inc) |
| linux | kernel | * |
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 (UAF) issue in the Linux kernel's netfilter conntrack component. If the initialization function nf_conntrack_init_start() fails, the cleanup function frees a data structure called nf_ct_helper_hash. However, other netfilter modules can still load and attempt to access this freed nf_ct_helper_hash pointer, leading to use-after-free. This can cause random memory corruption. The fix involves adding checks to prevent accessing the freed or uninitialized nf_ct_helper_hash pointer.
How can this vulnerability impact me? :
This vulnerability can lead to random memory corruption in the Linux kernel, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code with kernel privileges. This can compromise the security and reliability of systems running vulnerable Linux kernel versions with netfilter conntrack enabled.