I tried fingerprintJS, but that generates fingerprint at a browser level. I was wondering if we can uniquely identify a device, something like generating a fingerprint from chrome, firefox, or any browser on a device that should give the same value.
Asked
Active
Viewed 5,034 times
1
-
Is it possible? Probably, sure. – Chris Baker Feb 19 '21 at 06:17
1 Answers
0
Yes you can create a fingerprint of the browser or device using different libraries. Do note that protections against fingerprinting are becoming more popular across browsers, so their use may not be of great importance in the future.
See: https://blog.jscrambler.com/introduction-to-device-fingerprinting/ for an explanation and some simple JS.
Also the library used: https://github.com/jackspirou/clientjs

Josiah Bradley
- 84
- 5
-
Thanks for the response, I had read this article and tried this approach before, it gives me diffrent fingerprints when I try from different browsers, I need fingerprint at a device level, not browser – Krunal Lia Feb 19 '21 at 08:13
-
1The ClientJS library has an entire section on how to do device fingerprinting. Remember that many browsers and operating systems actively try to prevent fingerprinting, so that may be why you are not seeing matches. https://clientjs.org/#Device – Josiah Bradley Feb 19 '21 at 21:14