cve/2024/CVE-2024-24684.md

18 lines
1.1 KiB
Markdown
Raw Normal View History

2025-09-29 16:08:36 +00:00
### [CVE-2024-24684](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-24684)
![](https://img.shields.io/static/v1?label=Product&message=libigl&color=blue)
![](https://img.shields.io/static/v1?label=Version&message=%3D%20v2.5.0%20&color=brighgreen)
![](https://img.shields.io/static/v1?label=Vulnerability&message=CWE-121%3A%20Stack-based%20Buffer%20Overflow&color=brighgreen)
### Description
Multiple stack-based buffer overflow vulnerabilities exist in the readOFF functionality of libigl v2.5.0. A specially crafted .off file can lead to stack-based buffer overflow. An attacker can provide a malicious file to trigger this vulnerability.This vulnerability concerns the header parsing occuring while processing an `.off` file via the `readOFF` function. We can see above that at [0] a stack-based buffer called `comment` is defined with an hardcoded size of `1000 bytes`. The call to `fscanf` at [1] is unsafe and if the first line of the header of the `.off` files is longer than 1000 bytes it will overflow the `header` buffer.
### POC
#### Reference
No PoCs from references.
#### Github
- https://github.com/SpiralBL0CK/CVE-2024-24684