CVE-2023-1975:
Answer vulnerable to Insertion of Sensitive Information Into Sent Data
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.1934%
CWE
Published
4/11/2023
Updated
4/19/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/answerdev/answer | go | < 1.0.8 | 1.0.8 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unprocessed EXIF data in user-uploaded images. The commit adds EXIF removal via a new Dexif
function call within uploadFile()
. In vulnerable versions (<1.0.8), this sanitization step was missing. The uploadFile
function is directly responsible for processing uploads and writing files to storage, making it the vulnerable entry point. The patch confirms this by adding EXIF removal at this exact location in the file
processing workflow.