To disable JavaScript complete is no practical solution. But I want to disable some commands.
Code: Select all
screen.*
navigator.*
Code: Select all
screen.*
navigator.*
Code: Select all
Object.defineProperty(window, "screen", {set:function(){}});Object.defineProperty(window, "navigator", {get:function(){return {}}, set:function(){}});
Code: Select all
@^https?://
Peter6548 wrote:Is there a documentation anywhere about it? I can't find it.
Peter6548 wrote:One of my "problems" is that the browser tells all my fonts.
Peter6548 wrote:JS/CSS can set fonts, but AFAIK it requires Flash (or some other plugin) to actually fingerprint you based on them... (am I wrong?)
Code: Select all
Object.defineProperty(window, "screen", {set:function(){}});
Peter6548 wrote:I'm not sure. Normally you use Flash but it is possible without: http://www.lalit.org/lab/javascript-css-font-detect/
Peter6548 wrote:May I ask an other question?
I try to delete only the screen part. but have no success. This did not work (on https://panopticlick.eff.org/):Code: Select all
Object.defineProperty(window, "screen", {set:function(){}});
What make I wrong?