1.2.3 • Published 2 years ago

my-browser-fingerprint v1.2.3

Weekly downloads
-
License
GPL-3.0-or-later
Repository
-
Last release
2 years ago

my-browser-fingerprint

Fork from https://github.com/damianobarbati/get-browser-fingerprint

With this module, you can define your own Browser Spec parameters to generate a unique fingerprint hash.

Usage Example (How to add to your browser:)

HTML page:

<script type="module" src="../js/fingerprint.js"></script>

JavaScript file:

import my_browser_fingerprint from '../node_modules/my-browser-fingerprint/src/index.js';
var fingerprint =  my_browser_fingerprint({debug:false,myspec:['appCodeName',
                                      'appName',
                                      'appVersion',
                                      'colorDepth',
                                      'cookieEnabled',
                                      'deviceMemory',
                                      'doNotTrack',
                                      'hardwareConcurrency',
                                      'language',
                                      'languages',
                                      'maxTouchPoints',
                                      'pixelDepth',
                                      'platform',
                                      'product',
                                      'productSub',
                                      'touchSupport',
                                      'userAgent',
                                      'vendor',
                                      'vendorSub',
                                      'webgl',
                                      'webglInfo']});


console.log(fingerprint);

Options available:

  • myspec (default false): leverage only hardware info about device
  • debug: log data used to generate fingerprint to console and add canvas/webgl canvas to body to see rendered image (default false)

Demo

  • run the src/index.html file on a webserver

my-browser-fingerprint

GPL licenses
A module for my-browser-fingerprint

exports.getWebglID ⇒ objet

Function what generates your WebglID

Kind: Exported constant
Returns: objet - getWeblID

TypeDescription
booleandebug - optional

Example

const webgl = getWebglID(debug);

exports.getWebglInfo ⇒ objet

Function what generates your getWebglInfo

Kind: Exported constant
Returns: objet - WebglID

TypeDescription
booleandebug - optional

Example

const webglinfo = getWebglInfo(debug);

exports.get_hash ⇒ integer

Function what generates the final fingerprint Hash

Kind: Exported constant
Returns: integer - returns a positive unique number

TypeDescription
objectkey

Example

const myfingerprinthash = get_hash(debug);
1.2.3

2 years ago

1.2.2

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago