Chrome 80 enforces SameSite-by-default cookie handling
Google released Chrome 80 with SameSite=Lax by default and new requirements for Secure cookies set in cross-site contexts, pushing web apps to label cookies explicitly and update authentication flows.
Executive briefing: Chrome 80 began enforcing the SameSite-by-default model, treating cookies without a SameSite attribute as Lax and requiring Secure on SameSite=None cookies. The change alters how authentication, CSRF defenses, and third-party embeds behave and demands explicit cookie labeling.
Why it matters
- Cross-site sign-in, embedded widgets, and legacy CSRF protections can break unless cookies are set with the correct SameSite value.
- SameSite=None now requires Secure and HTTPS, accelerating the phase-out of third-party cookies on insecure origins.
- Server libraries and reverse proxies may need upgrades to support the new attribute parsing and to avoid dropping the None value for older user agents.
Operator actions
- Inventory application cookies and explicitly set SameSite values (None, Lax, or Strict) that match intended use.
- Mark all SameSite=None cookies as Secure and serve them over HTTPS; update load balancer or CDN configurations as needed.
- Test federated login flows, embedded iframes, and payment integrations in Chrome 80+ to verify session continuity.
- Patch application frameworks or libraries to versions that correctly emit the None attribute and avoid legacy-stripping behavior.
Key sources
- Chromium Blog: SameSite cookie changes in February 2020 (explains enforcement timeline and developer guidance).
- Chrome Releases: Stable Channel Update for Desktop (announces Chrome 80 stable rollout on 4 February 2020).
Continue in the Developer pillar
Return to the hub for curated research and deep-dive guides.
Latest guides
-
Secure Software Supply Chain Tooling Guide — Zeph Tech
Engineer developer platforms that deliver verifiable provenance, SBOM distribution, vendor assurance, and runtime integrity aligned with SLSA v1.0, NIST SP 800-204D, and CISA SBOM…
-
AI-Assisted Development Governance Guide — Zeph Tech
Govern GitHub Copilot, Azure AI, and internal generative assistants with controls aligned to NIST AI RMF 1.0, EU AI Act enforcement timelines, OMB M-24-10, and enterprise privacy…
-
Developer Enablement & Platform Operations Guide — Zeph Tech
Plan AI-assisted development, secure SDLC controls, and runtime upgrades using Zeph Tech research on GitHub Copilot, GitHub Advanced Security, and major language lifecycles.




