Difference between revisions of "Browser Origin Policy"

From MgmtWiki
Jump to: navigation, search
(Cookies)
(Cookies)
Line 6: Line 6:
 
==Cookies==
 
==Cookies==
 
* 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.
 +
* Note that prior to 2022 javascript could read any cookie.
 
* Schemeful Same-Site overcomes a limitation on [https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05#section-8.8 SemeSite Cookie] not looking at the scheme. Explainer is at https://github.com/sbingler/schemeful-same-site
 
* Schemeful Same-Site overcomes a limitation on [https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05#section-8.8 SemeSite Cookie] not looking at the scheme. Explainer is at https://github.com/sbingler/schemeful-same-site
 
* Origin-Bound Cookies Explainer https://github.com/sbingler/Origin-Bound-Cookies
 
* Origin-Bound Cookies Explainer https://github.com/sbingler/Origin-Bound-Cookies

Revision as of 16:16, 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