reek / anti-adblock-killer

Anti-Adblock Killer helps you keep your Ad-Blocker active, when you visit a website and it asks you to disable.
http://reek.github.io/anti-adblock-killer/
Other
6.02k stars 760 forks source link

adbull.me #2995

Open pepopeposo opened 7 years ago

pepopeposo commented 7 years ago

link : http://adbull.me/A0UfkN

screen : https://k61.kn3.net/0/D/8/1/A/4/993.png

-addguard

uBlock-user commented 7 years ago

@X01X012013 seems like a CSS bait

jspenguin2017 commented 7 years ago

Hum, I'll check ads bypasser for this one. If someone can check it for me, that'll help a lot.

uBlock-user commented 7 years ago

Adsbypasser doesn't have anything on this domain, I already checked it out. They do have shink.in though

leosuncin commented 7 years ago

The code used for check adblock is:

function checkAdblockUser ()
{
  if (!document.getElementById('test-block')) {
        $('#link-view').replaceWith('<div class="alert alert-danger" style="display: inline-block;">'+
          'Please disable Adblock to proceed to the destination page.'+'</div>');
  }
}

$(document).ready(function () {
window.setTimeout(function ()
  {
    checkAdblockUser()
  }, 1000)

});

For manually bypass press Ctrl+U copy the original form content for #link-view, using DevTools delete the script tag of the previous code, replace the div content with the source code of form and in the console execute onloadCallback()

jspenguin2017 commented 7 years ago

I have this script rule:

if (a.domCmp(["cutwin.com", "cut-urls.com", "adbull.me", "xess.pro", "clik.pw"])) {
    a.bait("div", "#test-block", true);
    a.timewarp("setInterval", a.matchMethod.stringExact, "1000");
}

Can't completely bypass it but works rather well.