mirror of
https://github.com/0xMarcio/cve.git
synced 2025-11-28 18:48:49 +00:00
21 lines
1.5 KiB
Markdown
21 lines
1.5 KiB
Markdown
### [CVE-2024-43845](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43845)
|
|

|
|

|
|

|
|

|
|

|
|

|
|
|
|
### Description
|
|
|
|
In the Linux kernel, the following vulnerability has been resolved:udf: Fix bogus checksum computation in udf_rename()Syzbot reports uninitialized memory access in udf_rename() when updatingchecksum of '..' directory entry of a moved directory. This is indeedtrue as we pass on-stack diriter.fi to the udf_update_tag() and becausethat has only struct fileIdentDesc included in it and not the impUse orname fields, the checksumming function is going to checksum random stackcontents beyond the end of the structure. This is actually harmlessbecause the following udf_fiiter_write_fi() will recompute the checksumfrom on-disk buffers where everything is properly included. So all thatis needed is just removing the bogus calculation.
|
|
|
|
### POC
|
|
|
|
#### Reference
|
|
No PoCs from references.
|
|
|
|
#### Github
|
|
- https://github.com/fkie-cad/nvd-json-data-feeds
|
|
|