/driverless-fp-collector

fetch fingerprints using javascript for selenium-driverless

Primary LanguageJavaScriptMIT LicenseMIT

FP-Collector

Simple script for collecting some unique information from browsers

checkout the demo

Feel free to contribute!

See dev-branch for the latest features.

Usage

You can embed the script into your website using a free CDN.

<script type="text/javascript" src="://unpkg.com/fp-collector"><script>
var elem = document.documentElement;
function callback(e){
    window.fp_click_callback(e)
    elem.removeEventListener("mousedown", this);
    elem.removeEventListener("touchstart", this);
    elem.removeEventListener("touchmove", this);
    elem.removeEventListener("mousemove", this);
}
var data = getFingerprint(true, false);
elem.addEventListener("mousedown", callback);
elem.addEventListener("touchstart", callback);
elem.addEventListener("touchmove", callback);
elem.addEventListener("mousemove", callback);
data = await data
// globalThis.on_fp_result
// send_back(JSON.stringify(data)
async function getFingerprint(get_gl=true, check_worker=true){...}
  • get_gl=true will unavoidably show warnings in the console stack-overflow
  • check_worker=true requires blob: urls to be allowed ("Content-Security-Policy: worker-src 'self' blob:" header might work)

You can find some example output at sample_output.json

Help

Please feel free to open an issue or fork!
Note: please check the todo's below at first!

Todo's

Click to expand
  • no TODO's yet

Authors

Copyright and Author:
Aurin Aegerter (aka Steve)

Cleanups, NPM: Peet

License

fp-collector is licensed under the MIT license! See LICENSE.md

Third pary

for the demo as well: jquery.json-viewer and jquery, which each have their own licence

Disclaimer

I am not responsible what you use the code for!!! Also no warranty!

Acknowledgments

Inspiration, code snippets, etc.