CVE-2021-32559:
Integer overflow in pywin32
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.41477%
CWE
Published
8/9/2021
Updated
10/25/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
pywin32 | pip | < 301 | 301 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper size calculation in ACL management. The pull request #1701 specifically modifies PyACL
code to add overflow checks (e.g., validating 'required_size' doesn't exceed 65535 or wrap around). The issue description explicitly mentions PyACL
resizing logic, and the CWE-190 classification confirms this is an integer overflow scenario. The affected component aligns with the PyACL
class's responsibility for access control list operations.