Original URL: https://www.theregister.com/2002/01/16/windows_media_player_must/

Windows Media Player must be patched to fix IE

That makes sense

By Thomas C Greene

Posted in Software, 16th January 2002 10:43 GMT

A trivial scrap of malicious JavaScript can defeat entirely the Platform for Privacy Preferences (P3P) 'protections' Microsoft has integrated into Internet Explorer 6, all because of a dodgy 'feature' in Windows Media Player (WMP).

According to a post by privacy advocate Richard M. Smith to the BugTraq mailing list Tuesday, WMP generates by default a serial number which can be grabbed by a Web site using the simple exploit. The number can be used as a 'super cookie', as Smith calls it, enabling a nosey third party to track a victim's on-line comings and goings regardless of their cookie handling rules.

Even if all cookies are deleted and privacy policy set to reject them, the WMP number can be used to track users because it's stored in the Windows Registry. It can be read with a simple ClientID request, as Smith illustrates with a demo Web page. The hole affects both IE6 and older versions of Netscape, Smith says.

The coding here is embarrassingly simple:

<OBJECT classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"

ID=WMP WIDTH=1 HEIGHT=1>
</OBJECT>

<script>

alert(document.WMP.ClientID);


</script>

"Once the ID number is available to a JavaScript program, it can be sent back to a Web site either by appending it to the URL of a Web bug or storing it in a regular Web browser cookie," Smith explains.



The only fix is for users of older versions of WMP to patch their systems, and then to select the option in WMP which disables the wonderful 'feature' allowing their players to be uniquely identified. (Why anyone in his right mind would desire such a thing is quite beyond me; but the feature, incredibly, is enabled by default.)

Once a user turns off the option, a unique WMP number will be generated for each IE session, so long-term tracking is impossible.

"However, asking the average user to solve an Internet Explorer privacy leak by manually changing settings in a different program seems a bit much to me. Especially considering that there are many people who have never run Windows Media Player, yet they are still vulnerable to the problem," Smith notes.

And indeed, the idea that a media application might be causing a Web browser to leak data in spite of its own security settings would be counter-intuitive to the casual user or computing newbie.

It's only after we've become familiar with Microsoft's habits in security engineering that such a thing begins to make perfect sense. ®