Can a site detect if I use AdBlock in Firefox?

38

6

I recently visited (an official) website in search for an episode of a TV-show. The site popped an information dialog stating that I had to disable AdBlock to see the content. Is this at all possible or is it just an educated guess? Does Firefox advertise what addons I have installed? If so: how and why does it work that way?

Anders

Posted 2010-02-03T07:47:29.297

Reputation: 838

Answers

42

Yes, a website can detect that Adblock Plus is installed by referencing a Javascript file known to be blocked by Adblock Plus (because it matches a default rule) and check if this Javascript code has run, by checking a variable for instance.

See an explanation here: How To Detect Adblock Plus

And more details at Wikipedia: Adblock - Detection.

Snark

Posted 2010-02-03T07:47:29.297

Reputation: 30 147

5

It's entirely possible, it can be done with a bit of javascript. You can see a proof of concept here that shows how to detect multiple different adblock programs, which also uses javascript for detection. It isn't really the fact that Firefox "advertises" your installed add-ons, it's the method that most adblock programs use to function. Most will simply hide elements using the CSS visibility property and filter certain URLs. These URLs can be faked in an attempt to fool the filter, and it is an ongoing battle with regards to blocking detection.

John T

Posted 2010-02-03T07:47:29.297

Reputation: 149 037

Also interesting answer. Will look at poc to get more information. – Anders – 2010-02-03T08:12:40.017

It seems to have been fixed. I clicked on the first link and the detecting script link was broken. – user39559 – 2010-09-23T16:33:12.523

3

Without using any trickery, most browsers advertise installed plugins (like Flash), but not add-ons (like Adblock, which is detectable by other means like Snark answered). See Panopticlick, and help their investigation...

Arjan

Posted 2010-02-03T07:47:29.297

Reputation: 29 084