CVE-2016-0740: Pillow Buffer overflow in ImagingLibTiffDecode
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.49414%
CWE
Published
7/24/2018
Updated
10/9/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
pillow | pip | >= 0, < 3.1.1 | 3.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability is explicitly tied to ImagingLibTiffDecode
in TiffDecode.c
. The GitHub patch changes the 'size' variable from int to tsize_t
(a size type appropriate for libtiff operations), directly addressing the integer overflow risk. The commit message and CVE description confirm this function
as the source of the buffer overflow vulnerability.