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.
* Link to entry on the Chrome Platform Status https://chromestatus.com/feature/4945698250293248
+
* Origin-Bound Cookies Explainer https://github.com/sbingler/Origin-Bound-Cookies
* To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAM0wra8xjbL9kh3pV9u7YfXm0t4NzrUANr-tu1g23sdmQrU1zA%40mail.gmail.com.
+
** 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
 +
** To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAM0wra8xjbL9kh3pV9u7YfXm0t4NzrUANr-tu1g23sdmQrU1zA%40mail.gmail.com.
  
 
==References==
 
==References==

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