In RFC 6265 Section 7.1, it says:
Particularly worrisome are so-called "third-party" cookies. In rendering an HTML document, a user agent often requests resources from other servers (such as advertising networks). These third-party servers can use cookies to track the user even if the user never visits the server directly.
For example, if a user(using the same computer and the same web browser software, IE/Chrome etc) visits a site (A.com) that contains content from a third party(P) and then later visits another site(B.com) that contains content from the same third party(P), the third party can track the user between the two sites.
I'm curious, what does it mean by track the user between the two sites ?
To be concrete...
- Assume I'm that user,
- A.com's html contains a <img> tag grabbing images from server P, and B.com does the same;
- I visit A.com in the morning then visit B.com in the evening;
Via storing cookies on my computer, P knows I have web browsing behavior in the morning as well as in the evening(no doubt), but can P know I browse A.com(instead of B.com) in the morning?
