Forgot your password?
typodupeerror
The Internet Google Microsoft Privacy Slashdot.org

Audit Finds Google, Microsoft, and Meta Still Tracking Users After Opt-Out (404media.co) 48

alternative_right shares a report from 404 Media: An independent privacy audit of Microsoft, Meta, and Google web traffic in California found that the companies may be violating state regulations and racking up billions in fines. According to the audit from privacy search engine webXray, 55 percent of the sites it checked set ad cookies in a user's browser even if they opted out of tracking. Each company disputed or took issue with the research, with Google saying it was based on a "fundamental misunderstanding" of how its product works.

The webXray California Privacy Audit viewed web traffic on more than 7,000 popular websites in California in the month of March and found that most tech companies ignore when a user asks to opt-out of cookie tracking. California has stringent and well defined privacy legislation thanks to its California Consumer Privacy Act (CCPA) which allows users to, among other things, opt out of the sale of their personal information. There's a system called Global Privacy Control (GPC), which includes a browser extension that indicates to a website when a user wants to opt out of tracking.

According to the webXray audit, Google failed to let users opt out 87 percent of the time. "Google's failure to honor the GPC opt-out signal is easy to find in network traffic. When a browser using GPC connects to Google's servers it encodes the opt-out signal by sending the code 'sec-gpc: 1.' This means Google should not return cookies," the audit said. "However, when Google's server responds to the network request with the opt-out it explicitly responds with a command to create an advertising cookie named IDE using the 'set-cookie' command. This non-compliance is easy to spot, hiding in plain sight."

The audit said that Microsoft fails to opt out users in the same way and has a failure rate of 50 percent in the web traffic webXray viewed. Meta's failure rate was 69 percent and a bit more comprehensive. "Meta instructs publishers to install the following tracking code on their websites. The code contains no check for globally standard opt-out signals -- it loads unconditionally, fires a tracking event, and sets a cookie regardless of the consumer's privacy preferences," the audit said. It showed a copy of Meta's tracking data which contains no GPC check at all.

Audit Finds Google, Microsoft, and Meta Still Tracking Users After Opt-Out

Comments Filter:
  • Well Duh! (Score:5, Insightful)

    by oldgraybeard ( 2939809 ) on Tuesday April 14, 2026 @04:13PM (#66093768)
    "Still Tracking Users After Opt-Out" The only deluded individuals here are the ones thinking they were not ignoring this? But never mind, it is just monopolies being monopolies!
    • Re:Well Duh! (Score:5, Informative)

      by gweihir ( 88907 ) on Tuesday April 14, 2026 @08:43PM (#66094166)

      I have verified this a few times when doing IT security audits. Turns out when Google detects Chrome being used, they do all kinds of illegal (in the EU) stuff. Not so much with other browsers, not even chromium ones.

      • by AmiMoJo ( 196126 )

        Have you documented it? I'd like to submit a legal complaint.

        • by gweihir ( 88907 )

          Sorry, the reports are all confidential. But try, for example, playing an embedded YouTube video without being logged in on Chrome, on a Chromium browser and on Firefox and then check what persistent cookies were set. (Permitted under the GDPR: Only ones that do not allow tracking.) This was a few years back though. Since I do not use Chrome, I have not re-tested it.

    • What about the Evil Bit? How do they handle that? (nowadays usage of a Google domain should act as a substitute).

    • by GoJays ( 1793832 )
      Don't worry, I'm sure the courts will hand Google the equivalent of a $20 fine and say "Play nice okay? Or next time it will be $25." with no other legal recourse.
  • by fahrbot-bot ( 874524 ) on Tuesday April 14, 2026 @04:17PM (#66093774)

    ... 55 percent of the sites it checked set ad cookies in a user's browser even if they opted out of tracking.

    Each company disputed or took issue with the research, with Google saying it was based on a "fundamental misunderstanding" of how its product works.

    There are a few, simple reasons for this. We have to track you (a) so we know if we're not suppose to track you, (b) so we know if our not tracking is working and track how well it's working and (c) in case you change your mind we want all your data retroactively. All the tracking data from when we're not tracking you is stored in a separate database that no one has access to, except when we track statistics on how well the non-tracking is working -- pinky swear.

    • Don't even have to go very far. The company responses say exactly what's going on. (d) the law doesn't say we can't create cookies unrelated to ad tracking.

      âoeGlobal Privacy Controls only restricts certain uses of third-party data and allows website operators to override GPC signals, and we offer the Limited Data Use feature to help websites indicate what permissions they have. When data is transmitted to us with the LDU flag, we restrict the use of that dataâ

      we opt the user out of sharing personal data with third parties for personalized advertisingâ a Microsoft spokesperson said. âoeCertain Microsoft cookies are necessary for operational purposes, and may therefore be placed and read even when a GPC signal is detected.â

  • by swillden ( 191260 ) <shawn-ds@willden.org> on Tuesday April 14, 2026 @04:39PM (#66093802) Journal

    It's possible the companies are flagrantly ignoring the opt out indication.

    It's also possible that webXray is confusing ad/tracking cookies with cookies required for normal site operation, viewing any set-cookie command as a violation.

    Based on my experience working at Google, I'm betting on the second possibility. But, we'll see. Either we'll hear some stories about the companies being fined, or sued, or prosecuted (depending how the law works), or this will just quietly disappear when someone educates webXray.

    • If only we had some sort of legal penalty for this.
    • Re: (Score:3, Informative)

      by drinkypoo ( 153816 )

      It's also possible that webXray is confusing ad/tracking cookies with cookies required for normal site operation

      There is no such thing. Everything done with cookies can be done some other way EXCEPT for tracking, e.g. with hidden form variables or additional arguments in a request.

      • It's also possible that webXray is confusing ad/tracking cookies with cookies required for normal site operation

        There is no such thing. Everything done with cookies can be done some other way EXCEPT for tracking, e.g. with hidden form variables or additional arguments in a request.

        It can be, sure, but it's less reliable and more painful to work with.

        • That's ok. I'm sure Google has some competent programmers who could do it.

          • did I hurt someone's feefees? someone with sockpuppets?

          • That's ok. I'm sure Google has some competent programmers who could do it.

            No one can make session tracking with form variables or URL arguments as reliable as it is with cookies.

            • No one can make session tracking with form variables or URL arguments as reliable as it is with cookies.

              That's OK, a user might have to occasionally log in a little more. It's a small price to pay to prevent ubiquitous tracking.

      • by Talchas ( 954795 )
        You can't do login in any remotely realistic way with that. For starters, you couldn't have bookmarks or type in the url and be logged in consistently (whenever your login cookie would change at all, all of your old links would break, and you probably want it to change for security reasons). On top of that, now any referrer leak is a security issue where you give away your account, instead of just a privacy leak.

        And no, "replace every single link with a POST form request" is not reasonable, starting with

        • And no, "replace every single link with a POST form request" is not reasonable, starting with the issue that now you can't hit back.

          Yes, you can. I regularly use a webapp where most links are driven with javascript, and the back button works fine both on links where they are and those where they aren't. This is kind of amazing given the general incompetence of the web app in question, like how actually doing that will at times lead to the creation of duplicate data because they apparently don't track whether forms have been used already. But that's not because they don't use cookies, because they do. It's just made by Accenture and they

    • Presumably they silo all the data from "sec-gpc: 1" responses for internal use, because the lawyers said that was okay and the mere presence of the tracker on the third party site did not constitute share or sale of their personal information by that third party (with contributory infringement on their part).

      As the law says, "cookies concern the collection of personal information and not the sale or sharing of personal information".

      • If the law is about sale or sharing, not collection, then Google doesn't have to change anything, because Google doesn't sell or share data. That would be wasteful; Google's ad business is all about monetizing the data at Google, not giving someone else a chance to monetize it.

    • by Anonymous Coward

      You can check if your browser is sending GPC in the top banner here [globalprivacycontrol.org] or seeing GPC header and JavaScript settings here [vercel.app].

      The Privacy Badger extension by the EFF [privacybadger.org] adds GPC to your browser if it's missing native support [globalprivacycontrol.org], like Chrome or Edge.

    • > this will just quietly disappear when someone educates webXray

      "Nice business you have here. It would be a shame if something happened to it."

      https://www.youtube.com/watch?... [youtube.com]

      • > this will just quietly disappear when someone educates webXray

        "Nice business you have here. It would be a shame if something happened to it."

        https://www.youtube.com/watch?... [youtube.com]

        Incredibly unlikely. If the claimed violations are legitimate, and webXray reported them to the state plus the attempt to lean on them, Google would get slammed, hard, both legally and in the press. No way in hell Google would risk that.

    • Somehow, I suspect the second. If for no other reason than 404 seems not to know about due diligence.
  • Before you get outraged, do take care about what you rage.

    The moment you read something like "spectre of ... non-compliance", you have to know you're reading rage bait trying to be careful not to get into libel territory.

  • by Required Snark ( 1702878 ) on Tuesday April 14, 2026 @04:42PM (#66093808)
    It only has to be one cent. They would notice real quickly.
    • Or maybe the 250 grand(per infringement) that the MPAA wants to fine you for violating copyright, splashed right up with an FBI warning on every video disc I've ever watched.
    • You would have to get voters to put politicians in office that agree to those fines and that don't just allow the courts to quietly renegotiate them down to zero.

      About 40% of voters are currently super super concerned about trans girls in sports having suddenly become big fans of women's sports in the last couple of years after spending their whole lives ignoring them.

      Eventually they'll forget about that and move on to some other pointless moral panic and continue to ignore there ever worsening econ
  • by sit1963nz ( 934837 ) on Tuesday April 14, 2026 @04:54PM (#66093832)
    I am shocked...shocked I tell you.
  • Hi,

    This research ties back to a product page, which provides no information aside from an option to talk to someone about a demo.

    If they give me a free eval copy, I'll take this comment down.

  • First, does the cookie actually record what one does, or is it a "config" file?

    Second, "too big to care" corporations failed to regulate their "do not track" self-regulation. It's why, promises like this need to be legally binding: Not something corporations secretly cancel their compliance to, then shrug-off when caught.

  • by Anonymous Coward on Tuesday April 14, 2026 @06:25PM (#66093992)

    The Privacy Badger extension by the EFF [privacybadger.org] adds GPC to your browser if you're not using one that supports it natively [globalprivacycontrol.org]. Chrome and Edge need the extension.

    You can see whether the signal is disabled by checking the banner here [globalprivacycontrol.org] or, for more details, here [vercel.app].

  • Now skewer them. They really deserve it.

  • by FudRucker ( 866063 ) on Tuesday April 14, 2026 @07:54PM (#66094120)
    When google got into the advertising business they became insanely corrupt and considering all the other stuff they do it is a conflict of interest, android phones, search engine & chrome browser all that stuff is tempting for an advertising business to build in spyware to datamine users, fuck Google they need to be split up three ways or more

An adequate bootstrap is a contradiction in terms.

Working...