Asymmetric Resource Consumption (Zip Bomb) Affecting python package, versions [3.8.0,3.8.19) [3.9.0,3.9.19) [3.10.0,3.10.14) [3.11.0,3.11.9) [3.12.0,3.12.3)
Threat Intelligence
EPSS
0.05% (19th
percentile)
Do your applications use this vulnerable package?
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applications- Snyk ID SNYK-UNMANAGED-PYTHON-7924823
- published 9 Sep 2024
- disclosed 19 Mar 2024
- credit dyingc
Introduced: 19 Mar 2024
CVE-2024-0450 Open this link in a new tabHow to fix?
Upgrade python
to version 3.8.19, 3.9.19, 3.10.14, 3.11.9, 3.12.3 or higher.
Overview
Affected versions of this package are vulnerable to Asymmetric Resource Consumption (Zip Bomb) in the zipfile
module. An attacker can create a zip-bomb with a high compression ratio that exploits the zip format to overlap entries in the archive.
Workaround
Thee following check can be used before extracting a ZIP file.
# zipf is an open ZipFile
end_offset = zipf.start_dir
for zinfo in sorted(zipf.filelist,
key=lambda zinfo: zinfo.header_offset,
reverse=True):
if zinfo.header_offset + zinfo.compress_size > end_offset:
raise zipfile.BadZipFile('Overlapped entries')
end_offset = zinfo.header_offset
CVSS Scores
version 3.1