In the Linux kernel, the following vulnerability has been resolved:
fs/ntfs3: Initialize allocated memory before use
KMSAN reports: Multiple uninitialized values detected:
- KMSAN: uninit-value in ntfs_read_hdr (3)
- KMSAN: uninit-value in bcmp (3)
Memory is allocated by __getname(), which is a wrapper for
kmem_cache_alloc(). This memory is used before being properly
cleared. Change kmem_cache_alloc() to kmem_cache_zalloc() to
properly allocate and clear memory before use.
References
Configurations
Configuration 1 (hide)
|
History
No history.
Information
Published : 2025-12-24 11:16
Updated : 2026-02-26 18:44
NVD link : CVE-2025-68365
Mitre link : CVE-2025-68365
CVE.ORG link : CVE-2025-68365
JSON object : View
Products Affected
linux
- linux_kernel
CWE
CWE-908
Use of Uninitialized Resource
