Third-party cookies allowed

Your browser accepts cookies set by third-party domains embedded in other sites, which is the basic mechanism of cross-site tracking.

Do this: Block third-party cookies in your browser's privacy settings. Third-party cookies are how one advertiser follows you across every site that embeds them.
PassThird-party cookies are blocked or partitioned.
MediumThird-party cookies are allowed and can track you across sites.

The fix, in one snippet

Example to adapt Where to switch it off
Chrome / Edge / Brave:
  chrome://settings/cookies > "Block third-party cookies"
Firefox:
  Settings > Privacy & Security > Enhanced Tracking Protection > Strict
Safari:
  Settings > Privacy > tick "Prevent cross-site tracking"

Illustrative values. Change the paths, hostnames and options to match your own site before using it.

The sections below explain what is tested, why it matters and the alternatives.

What we test

The scan page embeds an iframe from a second domain that Scan.now controls. Inside the frame, a probe endpoint sets a cookie with SameSite=None; Secure, then a second request checks whether the cookie came back. The frame also reads document.cookie and calls document.hasStorageAccess(). Because Firefox partitions third-party cookies per top-level site rather than blocking them, we also compare the cookie set during a first-party visit to the probe domain with the one seen inside the frame: if they differ, cookies are partitioned and the check passes. The result is one of blocked, partitioned or allowed; only "allowed" fails.

Chrome and Edge still allow third-party cookies by default (Google withdrew its plan to remove them in 2024 and in 2025 said it would not add a new prompt), Safari blocks them, Firefox partitions them and Brave blocks them.

Why it matters

An advertising or analytics domain embedded on thousands of sites receives one cookie per browser and therefore sees every page that embeds it. That cookie is the identifier that joins your visits into a profile, which is sold or used for targeting. Allowing third-party cookies also means cross-site requests carry your session cookies unless the site set SameSite correctly, which is the basis of cross-site request forgery. Chrome and Edge users on default settings are the largest affected group.

How to fix it

Chrome: Settings > Privacy and security > Third-party cookies > "Block third-party cookies". Edge: Settings > Cookies and site permissions > Manage and delete cookies > "Block third-party cookies", or set Tracking prevention to Strict. Firefox: the Standard level already partitions cookies (Total Cookie Protection); Strict blocks known trackers outright. Safari: blocks all third-party cookies by default. Some embedded widgets and single sign-on flows break; browsers handle this with per-site exceptions and the Storage Access API prompt, so allow individual sites rather than the whole category.

Related: the SameSite default check. Guides: cookies explained, automatically deleting cookies and how online tracking works.

Where this fits

Third-party cookies allowed is check 7 of 16 that the browser security & privacy check runs under browser privacy and policy enforcement, ordered the way they are worth fixing. That ordering is the point: Fixing this one while the check above it still fails buys less than it looks like.

Fix this one first

Above it in the same category sits Browser fingerprint uniqueness (medium), where the combination of signals your browser exposes matched no other visitor in our sample, so it could be used to recognise you across sites without cookies. An attacker who has that does not need this, so it is the better use of the same hour.

What fixing this still leaves open

Third-party cookies allowed closes one route in. Immediately below it: Browser defaults cookies to SameSite=Lax, where your browser sent a cookie that has no SameSite attribute on a cross-site request, so it does not apply the Lax default that limits cross-site request forgery; Canvas fingerprinting exposure, where your browser renders a hidden test image identically every time and lets scripts read the pixels back, so the result can serve as a stable tracking signal; Full referrer sent cross-site, where when you follow a link to another site, your browser sends the full address of the page you came from, including its path and query string.

Prompt for an AI Hand this check to an assistant Sign in to copy it
The first few lines
You are a senior web engineer. I ran a security and SEO scanner against my site and it reported the finding below. Fix it properly rather than suppressing the symptom.

Finding: Third-party cookies allowed (medium severity)
Scanner check id: third-party-cookies
What this check tests: Your browser accepts cookies set by third-party domains embedded in other sites, which is the basic mechanism of cross-site tracking.
21 more lines, including the evidence and the exact fix

The rest of this prompt names the pages and line numbers we found the problem on, the configuration to change, and the constraints a good answer has to respect. It is free, it just needs an account so the work is not scraped wholesale.

Sign in with Google

Signing in is free and takes one click. We store your email address and nothing else.

References

  1. MDN: Third-party cookies
  2. Mozilla: Enhanced Tracking Protection in Firefox for desktop
  3. Google: Delete, allow and manage cookies in Chrome
  4. WebKit: Full Third-Party Cookie Blocking and More

Related guides