Google has fallen victim to its own ad platform, allowing threat actors to create fake Google Authenticator ads that push the DeerStealer information-stealing malware.

In a new malvertising campaign found by Malwarebytes, threat actors created ads that display an advertisement for Google Authenticator when users search for the software in Google search.

What makes the ad more convincing is that it shows ‘google.com’ and “https://www.google.com” as the click URL, which clearly should not be allowed when a third party creates the advertisement.

We have seen this very effective URL cloaking strategy in past malvertising campaigns, including for KeePass, Arc browser, YouTube, and Amazon. Still, Google continues to fail to detect when these imposter ads are created.

Malwarebytes noted that the advertiser’s identity is verified by Google, showing another weakness in the ad platform that threat actors abuse.

When the download is executed, it will launch the DeerStealer information-stealing malware, which steals credentials, cookies, and other information stored in your web browser.

Users looking to download software are recommended to avoid clicking on promoted results on Google Search, use an ad blocker, or bookmark the URLs of software projects they typically use.

Before downloading a file, ensure that the URL you’re on corresponds to the project’s official domain. Also, always scan downloaded files with an up-to-date AV tool before executing.

  • flop_leash_973@lemmy.world
    link
    fedilink
    English
    arrow-up
    23
    ·
    2 months ago

    This kind of shit is why Googles (and anyone else that tries it as well) ever increasing push to put a layer of ads into anything is so off putting to me. Sure ads are annoying, but they are also probably second only to social engineering as the method for someones device and accounts getting compromised.

    I personally will not go back to the days where just the act of visiting a website and clicking on nothing has a good chance of loading some Javascript and infecting my browser or whole device with the drive by malware of the day because the shit heads that run the site are to lazy to vet what they are letting their site call out too and the third party ad networks are to lazy to vet what sorts of things they are allowing their ad networks to serve.

  • BurningnnTree@lemmy.one
    link
    fedilink
    English
    arrow-up
    16
    ·
    2 months ago

    I’m confused, does this mean that an ad can show the URL “google.com” even though clicking on it will take you to a different URL? Why doesn’t Google just make it so that the ad shows the actual URL that the ad links to?

    • Ghoelian@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      19
      ·
      edit-2
      2 months ago

      That’s actually pretty simple to do. I don’t know if this is how they did it, but one way is just creating an <a> tag with the href to google.com. that’ll show the destination if you hover over it. Then you just add an event listener to the click event, prevent the default event from executing, and manually redirect somewhere else.

      Made a quick example: https://codepen.io/Ghoelian/pen/poXeOyo

      • catloaf@lemm.ee
        link
        fedilink
        English
        arrow-up
        18
        ·
        2 months ago

        Yes, but ads shouldn’t have that level of control. They should provide an image or video and a link.

        • Ghoelian@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          4
          ·
          2 months ago

          Oh absolutely. I kinda feel like preventing the default action on a tag like that should just not be allowed, or browsers should not display the target link thing if it has an event listener attached or something.