CVE-2019-9635: NULL Pointer Dereference in Google TensorFlow
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.31616%
CWE
Published
4/30/2019
Updated
10/28/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:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
tensorflow | pip | >= 1.0.0, < 1.12.1 | 1.12.1 |
tensorflow-gpu | pip | >= 1.0.0, < 1.12.1 | 1.12.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the Decode function in gif_io.cc, which handled GIF frame color maps without proper null checks. The patch explicitly adds a 'if (color_map == nullptr)' check to prevent dereferencing. The commit message and CVE description both directly reference this decoding logic as the vulnerable component. The file modification in the commit diff confirms the vulnerable code path was in this function.