this post was submitted on 20 Mar 2021
27 points (100.0% liked)

Privacy

33192 readers
668 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

much thanks to @gary_host_laptop for the logo design :)

founded 5 years ago
MODERATORS
 

An interesting take on browser extensions which hope to prevent fingerprinting

With respect to native browser functionality:

Browser vendors have already invested a considerable amount of work into anti-fingerprinting. However, they usually limited themselves to measures which wouldn’t break existing websites...

And extensions:

Privacy protection extensions on the other hand aren’t showing as much concern. So they will typically do something like:

screen.width = 1280;
screen.height = 1024;

There you go, the website will now see the same display resolution for everybody, right? Well, that’s unless the website does this:

delete screen.width; delete screen.height;

And suddenly screen.width and screen.height are restored to their original values...

all 8 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 3 years ago (1 children)

Disabling Javascript shoud decrease the fingerprinting for the most part right?

[–] [email protected] 11 points 3 years ago* (last edited 3 years ago) (1 children)

That probably goes a long way, but there are several ways of fingerprinting without javascript (Firefox appears to be working on beating many of them) including:

and just the general header information the browser sends by default can put users in a bucket by geolocation, platform, browser etc.

But Firefox seems to be getting many of the most egregrious problems under control.

[–] [email protected] 4 points 3 years ago

I suppose in that case we should choose the sites we browse carefully.

[–] [email protected] 2 points 3 years ago (1 children)

This is why I use multiple web browsers for different sites and workflow :)

[–] [email protected] 2 points 3 years ago (1 children)

Actually. Everybody tries to get rid of tracking by making everyone look the same. Wouldn't it be easier to just randomize a person to every site/session instead?

[–] [email protected] 2 points 3 years ago (1 children)

What do you mean in practice ?

[–] [email protected] 1 points 3 years ago

All the properties that are fingerprinted (resolution, canvas output, etc) should be made as unique as possible, but different for every site a user visits. So instead of trying to make everyone have the same face, make everyone's face change every minute.