![]() |
Chrome Users are Victims of Fake Ad Blockers - Printable Version +- AiOwares (https://www.aiowares.com) +-- Forum: The Daily News (https://www.aiowares.com/forumdisplay.php?fid=5) +--- Forum: Information Technology (https://www.aiowares.com/forumdisplay.php?fid=11) +--- Thread: Chrome Users are Victims of Fake Ad Blockers (/showthread.php?tid=190) |
Chrome Users are Victims of Fake Ad Blockers - mona - 04-21-2018 Over 20,000,000 of Chrome Users
are Victims of Fake Ad Blockers
17 APRIL 2018 on AdGuard Research
According to the PageFair 2014 report, Google Chrome is a major driver of adblock growth. 20% of users discovered ad blocking by browsing “available browser extensions”. Given how popular ad blocking is, it is quite a lot. This also explains why "cloning" wide-spread ad blockers has become so popular among online crooks. Seven months ago big news broke: 37,000 users were tricked into installing a fake Adblock Plus extension. What if I told you that thanks to poor Chrome's WebStore moderation the situation is much worse, and in reality over 20,000,000 users are affected and tricked into installing fake malicious ad blockers? I must say the problem is not new. It's been a while since different "authors" started spamming Chrome WebStore with lazy clones of popular ad blockers (with a few lines of their code on top of them). That's how users could end up installing some "Adguard Hardline" or "Adblock Plus Premium" or something like that. The only way of fighting this stuff is to file a trademark violation abuse to Google, and it takes them a few days to take a clone down. They got smarter now. Just look at the search results. All the extensions I've highlighted are simple rip-offs with a few lines of code and some analytics code added by the "authors". Instead of using tricky names they now spam keywords in the extension description trying to make to the top search results. ![]() Apparently, being in the top is enough to gain trust of casual users. For instance, take a look at the stats of one of them:
![]() So I've decided to take a deeper look inside of this so-called "AdRemover". The following section is full of technical details and if you are not interested, just skip it to the next section where I'll explain how it works in normal language.
All shades of hiding scripts There was one file added compared to the original code of the AdBlock extension, the coupons.txt file: ![]() Code: www.hanstrackr.com ![]() Quote:jQuery.extend({ This function returns a string: Quote:atob("here goes the hidden base64-encoded script") which is then executed. The script itself was also obfuscated. You can take a look at the deobfuscated version of it here.
This hidden script was listening to every request made by your browser and compared Quote:md5(url + "%Ujy%BNY0O") with the list of signatures loaded from Quote:coupons.txt When the said signature was hit, it loaded an iframe from the Quote:g.qyz.sx domain passing information about the visited page, and then re-initialized the extension. For instance, one of these signatures corresponded to Code: https://www.google.com/ Now to that weird image. It appears that another script is hidden inside of it, and the extension was decoding and executing it: Quote:decodeMessage = function(variable_0, variable_1) { The default image/script does nothing malicious, but at any moment it can be changed. Note, that this script is executed in the privileged context (extension's background page) and it can do literally anything with your browser. AdRemover's Summary Now back to the normal language. Here is a list of what this fake ad blocker does:
Basically, this is a botnet composed of browsers infected with the fake adblock extensions. The browser will do whatever the command center server owner orders it to do. It is not alone I have scanned other extensions on the WebStore and found four more using the very same approach. By the way, two of them are not fake ad blockers, and nothing pointed to them being malicious until I checked the code. Here is the full list.
We have reported these extensions to Google. Hopefully, they will be taken down soon. How to protect yourself from malicious extensions With the current state of things, surfing through the Chrome's WebStore is like walking through a minefield. So here's my advice: if you want to install an extension, think twice. And then think twice again. Ok, I got it, you absolutely need this extension. At least do one thing: check who is the author of this extension. Do not install it if you don't trust the author. Please note, that at some point the extension can be sold to someone else, and who knows what it will become (here's a vivid example).
.
SOURCE :
Code: https://blog.adguard.com/en/over-20-000-000-of-chrome-users-are-victims-of-fake-ad-blockers/ RE: Chrome Users are Victims of Fake Ad Blockers - WALLONN7 - 04-21-2018 OP edited. A few adjustments were made. |