CVE-2023-49619:
Apache Answer Race Condition vulnerability
3.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.75741%
CWE
Published
1/10/2024
Updated
1/19/2024
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/apache/incubator-answer | go | < 1.2.1 | 1.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper synchronization in bookmark handling. Two key functions are implicated: 1) The bookmark creation function (likely AddBookmark
) that fails to atomically check-and-insert bookmarks, allowing concurrent duplicate entries. 2) The counter update function (likely UpdateQuestionBookmarkCount
) that increments without proper transaction isolation. The pattern matches classic TOCTOU vulnerabilities where non-atomic check-then-act operations are vulnerable to race conditions between the existence check and write operation. The high confidence comes from the vulnerability description explicitly mentioning bookmark count manipulation through concurrent submissions.