diff options
author | Marvin Borner | 2019-03-15 18:22:38 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-15 18:22:38 +0100 |
commit | b0bc4cbcdbfe39eec179cf5f16f719133e24b270 (patch) | |
tree | fffcb616670cd53045646024a66d508b74cdca54 /public | |
parent | a1a64b36ceba7fafd950760ecdfbfead539991f9 (diff) |
Fixed fingerprinting with Arch Linux
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/encryption.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index 726d628..1ec5420 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -337,9 +337,13 @@ const self = module.exports = { */ generatePrivateFingerprint: passphrase => fingerprintJs.getPromise({ excludes: { + // TODO: Use more reliable fingerprinting method enumerateDevices: true, screenResolution: true, availableScreenResolution: true, + webglVendorAndRenderer: true, + userAgent: true, + webgl: true, }, }) .then(async (components) => { @@ -366,6 +370,9 @@ const self = module.exports = { enumerateDevices: true, screenResolution: true, availableScreenResolution: true, + webglVendorAndRenderer: true, + userAgent: true, + webgl: true, }, }) .then(async (components) => { |