CVE-2024-5569
eugrin opened this issue · 0 comments
Description
Description
A Denial of Service (DoS) vulnerability exists in the jaraco/zipp library, affecting all versions prior to 3.19.1. The vulnerability is triggered when processing a specially crafted zip file that leads to an infinite loop. This issue also impacts the zipfile module of CPython, as features from the third-party zipp library are later merged into CPython, and the affected code is identical in both projects. The infinite loop can be initiated through the use of functions affecting the Path module in both zipp and zipfile, such as joinpath, the overloaded division operator, and iterdir. Although the infinite loop is not resource exhaustive, it prevents the application from responding. The vulnerability was addressed in version 3.19.1 of jaraco/zipp.
Recommendation
Upgrade zipp from 3.17.0 to 3.19.1 to fix the vulnerability.
Reproduction steps
NA
Expected vs. actual results
NA
Minimal code example
No response
Error messages
No response
Compiler and operating system
Not related to compiler
Library version
3.17.0
Validation
- The bug also occurs if the latest version from the
develop
branch is used. - I can successfully compile and run the unit tests.