How to detect the original MAC address after it has been spoofed?

I wish to give an alternative. I don’t know if it really answer to ‘a way to uniquely identify any computer’. However, this method query the Win32_BIOS class in System.Management and return a string with high chances to be unique. (Waiting to be disavowed!!) /// <summary> /// BIOS IDentifier /// </summary> /// <returns></returns> public static … Read more

What is the most reliable way to hide / spoof the referrer in JavaScript?

I have found a solution which works in Chrome and Firefox. I’ve implemented the code in a Userscript, Don’t track me Google. Demo (tested in Firefox 9 and Chrome 17): http://jsfiddle.net/RxHw5/ Referrer hiding for Webkit (Chrome, ..) and Firefox 37+ (33+*) Webkit-based browsers (such as Chrome, Safari) support <a rel=”noreferrer”>spec. Referrer hiding can fully be … Read more