CVE-2023-37480:
Fides Webserver Vulnerable to Zip Bomb File Uploads
2.7
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.08424%
CWE
Published
7/18/2023
Updated
11/6/2023
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
ethyca-fides | pip | >= 2.11.0, < 2.16.0 | 2.16.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the save_template function handling zip uploads without size validation. The pre-patch code lacked the verify_zip check that was added in the fix. This function is the entry point for connector template uploads and was responsible for processing potentially malicious zip files without safeguards against decompression bombs. The added verify_zip function in the patch directly addresses this gap by implementing size checks before processing.