| They are not storing cookies but simply relying on if an ad blocker blocks ads.js or not: https://www.adblockanalytics.com/ads.js: var d = document.createElement("div"); d.id='abaA'; d.style.display='none'; document.body.appendChild(d); var abaA; if(!document.getElementById('abaA')) { abaA = 'N'; } else { abaA = 'Y'; } https://www.adblockanalytics.com/analyze.js: var r = new XMLHttpRequest(); r.open("POST","https://www.adblockanalytics.com/analyze/"); r.setRequestHeader("Content-type","application/x-www-form-urlencoded"); r.send("abaI="+abaI+"&abaA="+abaA+"&abaSw="+screen.width+"&abaSh="+screen.height+"&abaBw="+window.innerWidth+"&abaBh="+window.innerHeight); Don't see any reason why an ad blocker would block them. |