Live data from Hacker News

37k Chrome users downloaded a fake Adblock Plus extension

engadget.com

41–42 of 42 posts

Re: 37k Chrome users downloaded a fake Adblock Plus extension

#41

I audit every extension before I install it. You should too. https://chrome.google.com/webstore/detail/chrome-extension-s...

I am a mechanical engineer not a software developer. Any advice for me?

Here are a few things I'm scanning for:

1. Unexpected URL's or IP addresses. Most attack vectors, for example a key-logger, need to call home at some point. Keep in mind, the address may be stored in pieces that are later concatenated together, or other tricks like using charAt() that will break a naive search for "http://".

2. Blobs of base64 code or other obfuscated text that are later eval'd...

3. Or really anything in an eval function is super suspicious.

4. Remote scripts that injected into pages. Does this have plugin have a solid reason to do that? Otherwise, it's an obvious backdoor even if not necessarily nefarious.

5. Look for code that targets specific domains that are out of scope. If you're looking at an extension for a color picker, you wouldn't expect to see code targeting specific high-value sites like Paypal or Gmail.

6. If it's an email productivity add-on, is it stealing emails and contact information from signatures? It's surprisingly common.

7. Some extensions will try to swap out the advertiser IDs or change affiliate links. Unless it's an adblocker, you shouldn't expect to see any code targeting ads.

Re: 37k Chrome users downloaded a fake Adblock Plus extension

#42
post #16

Earlier quoted context omitted.

I had the exact same problem re: uBlock Origin. I even set up a quick site[1] a couple referrals ago just so I could have a place to easily point someone to. [1] https://getublock.com/

You could do a little bit of work to automatically select the right browser based on user-agent, and just display one button prominently.

Yeah it does need a bit of love, I whipped it up in about 15 minutes or so when I wanted to link someone to the extension
Post reply on HN