Difference between revisions of "Browser Origin Policy"

From MgmtWiki
Jump to: navigation, search
(Cookies)
(Cookies)
Line 7: Line 7:
 
* Cookies stored on the user browser space are the typical means of moving data from one website to another, typically using [[Cross-Origin iFrame]]s.
 
* Cookies stored on the user browser space are the typical means of moving data from one website to another, typically using [[Cross-Origin iFrame]]s.
 
* Origin-Bound Cookies Explainer https://github.com/sbingler/Origin-Bound-Cookies
 
* Origin-Bound Cookies Explainer https://github.com/sbingler/Origin-Bound-Cookies
 +
** In 2022 over 95% of traffic is over HTTPS, which highlights some problems with cookies as they’re one of the few web platform components that do not respect the origin of their connection:
 
** Binds cookies to their setting origin (by default) such that they're only accessible by that origin. I.e., sent on a request or visible through `document.cookie`
 
** Binds cookies to their setting origin (by default) such that they're only accessible by that origin. I.e., sent on a request or visible through `document.cookie`
 
** Link to entry on the Chrome Platform Status https://chromestatus.com/feature/4945698250293248
 
** Link to entry on the Chrome Platform Status https://chromestatus.com/feature/4945698250293248

Revision as of 16:10, 26 May 2022

Full Title or Meme

Browser Origin Policies are used to determine which data and control flows are allowed based on the URL of the page.

Context

  • Origin Policies were initiated to prevent tracking of users from one site to another.

Cookies

References