Do google have access to over hardware mac id / or mac id of the network card if they have then even if we clean the cookies or what ever no escape coz mac id are unique .
No way to read it via a browser unless they use some evil code in their Chrome. I wouldn't recommend using Chrome when you seek privacy from Google..
Another thing is that you can change a mac address of your network card (via bios).
B.
Just use the BetterPrivacy FF addon to clear your flash cookies.
They spy you 24/7, they might even know the way you move your pointers on the screen, sounds spooookynever knew these guys watch us that closely![]()
They spy you 24/7, they might even know the way you move your pointers on the screen, sounds spooooky![]()
http://www.adobe.com/go/settmgr_storage_en
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" / >
<title>Getting MAC Address From Javascript(IE Only) </title> <script language="javascript"> function showMacAddress(){ var obj = new ActiveXObject ("WbemScripting.SWbemLocator"); var s = obj.ConnectServer("."); var properties = s.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration"); var e = new Enumerator (properties); var output; output='<table border="0" cellPadding="5px" cellSpacing="1px" bgColor="#CCCCCC">'; output=output + '<tr bgColor="#EAEAEA"><td>Caption</ td><td>MACAddress</td></tr>'; while(!e.atEnd()) { e.moveNext(); var p = e.item (); if(!p) continue; output=output + '<tr bgColor="#FFFFFF">'; output=output + '<td>' + p.Caption; + '</td>'; output=output + '<td>' + p.MACAddress + '</td>'; output=output + '</tr>'; } output=output + '</table>'; document.getElementById("box").innerHTML=output; }
</script> </head>
<body> <input type="button" value="Show MAC Address" onclick="showMacAddress()" /> <div id="box"> </div> </body>
</html>