privacycg / private-click-measurement

Private Click Measurement
https://privacycg.github.io/private-click-measurement/
200 stars 8 forks source link

Delayed reporting and location tracking #17

Open kdzwinel opened 5 years ago

kdzwinel commented 5 years ago

Delayed, background request w/o user's direct consent can be abused for user deanonimization and location tracking.

Example scenario:

  1. User clicks a link on a bad actor's website where her identity is known. Link has ad click attribution properties.
  2. Destination page, potentially controlled by the same bad actor, confirms attribution.
  3. Next day, user browses from a different location.
  4. UA sends a delayed ad attribution request to the bad actor.
  5. Bad actor is able to link current user session with the previous one (based on ad attribution data) and learn user's new location (based on IP).

This is similar to https://wicg.github.io/BackgroundSync/spec/#location-tracking although less powerful since it only happens once (if UA doesn't implement retries*) and sends limited amount of data (potentially limiting it to only targeted attacks).

* Since retries would allow for prolonged tracking they should be implemented in a way that doesn't share ad attribution data with each attempt (e.g. by making a preflight request to confirm server availability before making the main request).

annevk commented 4 years ago

(See also #18 for the problem with the IP address remaining the same.)

hober commented 4 years ago

At minimum, the Privacy Considerations section should note this.