admin管理员组

文章数量:1331449

I have a node/express App and i would like to get the unique device fingerprint from where the app gets invoked. I came across some of the famous fingerprinting open source packages like but unfortunately this library supports browser fingerprinting and not generate unique fingerprint for every single device from where the app gets invoked ()

I also tried the device methods in clientjs but was returning undefined () and this again is a client side library.

What i'm trying to acplish is to get the unique device fingerprint on the server side. Like say for example consider a scenario where the app is invoked from 2 devices with the exact same configuration (like type, vendor and model) and in this use case i should be getting 2 unique device fingerprints.

The getDevice() in seems to be pretty close to what i'm looking for but not sure if it would satisfy my above use case, i.e. 2 devices with the exact same config (for example 2 iPhone 6) and i'm wondering in that case the type and vendor would be the same but not sure about the model value. Any idea or thoughts please share.

Also Augur (/) is the most remended device recognition software, but unfortunately it's no more an open source

I have a node/express App and i would like to get the unique device fingerprint from where the app gets invoked. I came across some of the famous fingerprinting open source packages like https://github./Valve/fingerprintjs2 but unfortunately this library supports browser fingerprinting and not generate unique fingerprint for every single device from where the app gets invoked (https://github./Valve/fingerprintjs2/issues/80#issuement-148302793)

I also tried the device methods in clientjs https://clientjs/#Device-getDevice but was returning undefined (https://github./jackspirou/clientjs/issues/65) and this again is a client side library.

What i'm trying to acplish is to get the unique device fingerprint on the server side. Like say for example consider a scenario where the app is invoked from 2 devices with the exact same configuration (like type, vendor and model) and in this use case i should be getting 2 unique device fingerprints.

The getDevice() in https://github./faisalman/ua-parser-js seems to be pretty close to what i'm looking for but not sure if it would satisfy my above use case, i.e. 2 devices with the exact same config (for example 2 iPhone 6) and i'm wondering in that case the type and vendor would be the same but not sure about the model value. Any idea or thoughts please share.

Also Augur (https://www.augur.io/) is the most remended device recognition software, but unfortunately it's no more an open source

Share Improve this question edited Jan 31, 2017 at 4:15 Sai asked Jan 29, 2017 at 20:17 SaiSai 2,0426 gold badges34 silver badges56 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

express-fingerprint provides a fingerprinting system based on characteristics observable in the contents of Web requests, without the use of any code executing on the client side.

https://www.npmjs./package/express-fingerprint

本文标签: javascriptNodeJSGet unique devicefingerprintStack Overflow