ainelibell-network.com Ads.txt file
<html lang="en">
<body>
<script>
const ssp = "11745";
const DIRECT_LINK_URL_ENDPOINT = `https://${ssp}.direct.4armn.com`;
function redirect() {
const queryParams = {
"ip": "207.154.202.109",
"useragent": navigator.userAgent,
"pubid": "894044",
"siteid": "SITE_ID",
"source-type": "1",
};
const url = DIRECT_LINK_URL_ENDPOINT + "?" + Object.keys(queryParams)
.map(key => key + '=' + queryParams[key])
.join('&');
let xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.send();
xhr.onload = function () {
if (xhr.status === 200) {
let response = JSON.parse(xhr.response);
window.location.replace(response.url);
}
};
}
redirect();
</script>
</body>
</html>