Best way to compare digital fingerprints?

I know there are various websites which allow you to see your IP address and related info which a website can possibly use to identify you.

The best I’ve found is https://browserleaks.com/

However, it’s a bit too much. Let’s say I want to see if device/browser A and device/browser B have identical fingerprints, it’d be a super tedious tedious task for me to try every tool on each device and eyeball the results for any differences.

Is there a more efficient way?

(edit: Fingerprinting yourself really seems like an essential skill/tool for people who care about digital privacy. But knowing that your fingerprint is unique means nothing without knowing if it’s similarly unique across sessions within a given browser - which would require being able to perform comparisons.)

1 Like

Looks more condensed than browserleaks.com but still not sure how I’d use it to compare two fingerprints. I want a way to quickly compare my own fingerprints between browsers/devices. Info on a single fingerprint is meaningless when you don’t know the extent of the uniqueness.

Some sites allow exporting results like Am I Unique?. If a site doesn’t support exporting results you can just select and copy the whole page (to maintain consistency use Ctrl+A then Ctrl+C) then compare it using visual diff tools like

Meld
Kompare
Notepad++ with Compare plugin.

Some test sites can be found in Arkenfox wiki.

2 Likes

Is AmIUnique comprehensive? If so, then what’s all the other stuff available on BrowserLeaks? (it has 10 different tests to run, each with so much data!)

There’s no point of comparing fingerprints unless it is comprehensive.

As for running comparisons, I’m not sure how the JSON export from AmIUnique makes it any easier to run a comparison. I tried to compare two such exprts via Meld it made my PC crash (which never happens). I tried Meld with two doc files with Ctrl+A & Ctrl+C BrowserLeaks pastes, but the output made no sense. Just a two notepads full of nonsense characters with lots of highlighting came up.

TZP has a json export option too which you can diff

pretty-print it first so it isn’t all on one line: python -m json.tool fp-[timestamp].json > fp-new.json

Try comparing AmIUnique JSON files using JSON diff/compare extensions in Firefox. It’ll work fine.