CVE-2023-54130
Improper Error Handling and Memory Leak in Linux HFSplus Kernel Module
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 involves the Linux kernel's hfs/hfsplus filesystem code where a sanity check was implemented using WARN_ON(), which caused warnings when encountering corrupted hfs images. Instead of just warning, the fix changes the code to properly handle the error by returning an error code (-EIO) and stops performing the bad operations. Additionally, a memory leak introduced by a previous fix was corrected, and a previously unhandled case was added to the checks.
How can this vulnerability impact me? :
The vulnerability could cause the Linux kernel to emit warnings and potentially perform improper operations when handling corrupted hfs filesystem images, which might lead to instability or unexpected behavior. The fix improves error handling and prevents memory leaks, thereby enhancing system stability and reliability when dealing with corrupted hfs images.