reduced fingerprint cause would not detect all

This commit is contained in:
jenz 2023-02-11 01:34:10 +01:00
parent 4c098cd683
commit 6ff484c3e3

View File

@ -3,8 +3,7 @@ async function sending(s, withCanvasDrawing, withoutCanvasDrawing, javaHashFunct
var xhttp = new XMLHttpRequest();
xhttp.open('POST', 'https://receive.unloze.com/', true);
xhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhttp.send("name=" + JSON.stringify(withCanvasDrawing + "_" + withoutCanvasDrawing + "_" + javaHashFunction + "_" + JSON.stringify(s)
+ "_" + JSON.stringify(visitorId)) + " " + JSON.stringify(client_ip));
xhttp.send("name=" + JSON.stringify(JSON.stringify(s) + "_" + JSON.stringify(visitorId)) + " " + JSON.stringify(client_ip));
}
function sleep() {