CVE-2016-3259:
ChakraCore RCE Vulnerability
8.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.96142%
CWE
Published
5/14/2022
Updated
11/2/2023
KEV Status
No
Technology
C#
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
Microsoft.ChakraCore | nuget | < 1.2.0.0 | 1.2.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from three key issues: 1) Storing interpreter function
pointers in heap memory (InterpreterThunkEmitter
), allowing CFG bypass via memory corruption. 2) Type confusion in array operations due to unchecked DirectSetItemAt
usage. 3) Memory handling flaws in ArrayBuffer.transfer
. The commit diff shows direct modifications to these functions
to add safety checks (boolean flags instead of pointers, type validation, and memory zeroing), confirming their role in the vulnerability. The CVE description and Microsoft's advisory explicitly reference these memory corruption vectors in scripting engines.