CVE-2023-53997
Double-Free Vulnerability in Linux Kernel Thermal Zone Registration
Publication date: 2025-12-24
Last updated on: 2025-12-24
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a double-free issue in the Linux kernel's thermal subsystem. Specifically, after a certain commit, the function thermal_zone_device_register() allocates and frees a copy of the thermal zone parameters (tzp) argument, but thermal_of_zone_register() ends up leaking the original tzp and double-freeing the copied tzp. The fix involves placing tzp on the stack to avoid this double-free and memory leak.
How can this vulnerability impact me? :
This double-free vulnerability can lead to memory corruption, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges on the affected Linux system.