EU-EDPS / website-evidence-collector

Project moved to https://code.europa.eu/EDPS/website-evidence-collector ! The tool Website Evidence Collector (WEC) automates the website evidence collection of storage and transfer of personal data. https://edps.europa.eu/press-publications/edps-inspection-software_en
https://code.europa.eu/EDPS/website-evidence-collector
European Union Public License 1.2
426 stars 73 forks source link

www subdomain: first or third party mixup ? #95

Closed creativeworkx closed 1 year ago

creativeworkx commented 1 year ago

Hello guys,

I launched the tool using this command:

website-evidence-collector --html --overwrite --first-party-uri diepresse.com https://www.diepresse.com 2> /dev/null

Then I open the generated report and it tells me:

For the subsequent analysis, the following hosts (with their path) were defined as first-party:

www.diepresse.com
diepresse.com

Which would be the desired result.

But when I look at the cookies, I get the following result:

www.diepresse.com => first-party; diepresse.com => third-party.

Is this behavior intended?

rriemann commented 1 year ago

Can you please try instead:

website-evidence-collector --html --overwrite --first-party-uri http://diepresse.com https://www.diepresse.com 2> /dev/null

The URI argument expects also a schema.

creativeworkx commented 1 year ago

Thank you, this did the job!