this post was submitted on 18 Feb 2025
2 points (100.0% liked)

Technology

69391 readers
2756 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] lost_screwdriver@thelemmy.club 0 points 2 months ago (2 children)

Time for a user agent switcher. Like "Yeah, I swear, I'm a PS5, that has only monospaced comic sans insrelled"

[–] shortrounddev@lemmy.world 1 points 2 months ago* (last edited 2 months ago)

Fingerprinting unfortunately uses more than useragent strings. It takes hashes of data in your browser from a javascript context that is not easily masked or removed. For example, it might render a gradient of colors projected onto a curved 3d plane. The specific result of this will create a unique hash for your GPU. They can also approximate your geolocation by abusing the time-to-live information within a TCP packet, which is something you can't control on the clientside at all. If you TRULY want to avoid tracking by google, you need to block google domains in your hosts file and maybe consider disabling javascript on all sites by default until you trust them. Also don't use google.

[–] towelie@lemm.ee 0 points 2 months ago (1 children)

Jokes aside, keep in mind that the idea of fingerprinting is that your computer's configuration is as unique as a fingerprint (e.g., your monitor is x resolution, you are on this operating system, you are using these following extensions in this browser, you have these fonts on your system).

Setting your user agent to something super unique is basically shining a spotlight on yourself.

I recommend this user agent switcher extension (firefox)

[–] Huschke@lemmy.world 1 points 2 months ago* (last edited 2 months ago) (1 children)

It's way worse than that.

Even if you somehow magically have the same settings as everyone else, you're mouse movement will still be unique.

You can even render something on a canvas out of view and depending on your GPU, your graphics driver, etc the text will look different...

There is no real way to escape fingerprinting.

[–] towelie@lemm.ee 1 points 2 months ago

I have a novice coding question using the mouse tracking as an example: Is it possible to intercept and replace mouse tracking data with generic inputs? For example, could you implement an overlay that blocks mouse interactions, and instead of physically clicking on elements, send a direct packet to the application to simulate selecting those elements?