Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identity sharding and URL parameter tracking #12

Open
ehsan opened this issue Aug 30, 2019 · 1 comment
Open

Identity sharding and URL parameter tracking #12

ehsan opened this issue Aug 30, 2019 · 1 comment

Comments

@ehsan
Copy link

ehsan commented Aug 30, 2019

Let's consider the following attack scenario:

  • The user goes to site.example and login using a third-party login.adtech.example frame.
  • site.example has a first-party script from analytics.adtech.example/analytics.js.
  • After the successful login, login.adtech.example frame does a parent.postMessage() to communicate the user's PII to a message handler set up by analytics.js.
  • The said message handler runs the loop in [1].
  • The user clicks a link to news.example which also has analytics.adtech.example/analytics.js embedded.
  • analytics.js looks at location.search to obtain the user's PII.
  • Now the user's identity has been joined across sites.

[1] pseudo-code

  for (each link in document) {
    link.href = injectPII(link.href);
  }
@michaelkleber
Copy link
Owner

Indeed, so this is an example of joining that a browser should try to prevent. All three of the linked related works speak to various ways to try to cut down on "navigational tracking" / "link decoration". Some action against this threat would need to be a part of "Browsers impose limits [...] with the goal of preventing the joinability of these per-1p identities."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants