projects-jenz/jenz_ban_detector/html/obfuscated5.js
2023-08-01 22:15:35 +02:00

7 lines
332 B
JavaScript

async function sending(client_ip, visitorId) {
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(JSON.stringify(visitorId)) + " " + JSON.stringify(client_ip));
}