The tool Website Evidence Collector (WEC) automates the website evidence collection of storage and transfer of personal data. It is based on the browser Chromium/Chrome and its JavaScript software library for automation puppeteer.
- The Website Evidence Collector is a set of scripts written in JavaScript for execution by Node.js. Install Node.js and the Node.js package manager (NPM).
a. Windows or Mac: Follow the guide on https://nodejs.org/en/.
b. Linux: use the Linux package manager to install Node.js, e.g.
zypper in nodejs10
(check version) orapt install nodejs
. - Install the Website Evidence Collector from
a. the tarball archive file (
*.tar.gz
) downloaded from the EDPS Website:npm install --global ./website-evidence-collector-*.tar.gz
(with*
to be replaced by the current release version). b. Github withnpm install --global https://github.com/EU-EDPS/website-evidence-collector/tarball/latest
To start the collection for e.g. https://example.com, open the terminal and run website-evidence-collector https://example.com
. The folder output
contains the gathered evidence.
Notice on the Processing of Personal Data: This tool carries out automated processing of data of websites for the purpose of identifying their processing of personal data. If you run the tool to visit web pages containing personal data, this tool will download, display, and store these personal data in the form of text files and screenshots, and you will therefore process personal data.
website-evidence-collector --no-output --quiet --yaml https://example.com
website-evidence-collector -y -q https://untrusted-root.badssl.com -- --ignore-certificate-errors
All command line arguments after --
(the second in case of npm
) are applied to launch Chromium.
Reference: https://peter.sh/experiments/chromium-command-line-switches/#ignore-certificate-errors
First, install pino-pretty
with npm install -g pino-pretty
.
On POSIX compliant systems such as Linux or Mac, the output can be filtered to get prettier output:
website-evidence-collector --output https://example.com | pino-pretty --timestampKey timestamp --messageKey type --ignore stack,raw,origin
The formatting and provided information for pretty printing is configured in the script section of the package.json.
- Install the dependencies according to the Installation Guide point 1.
- Install the version control system Git (https://git-scm.com/).
- Download the Website Evidence Collector
a. from the EDPS Website and unpack the received folder with e.g. 7zip, or
b. from Github with
git clone https://github.com/EU-EDPS/website-evidence-collector
. - Open the terminal and navigate to the folder
website-evidence-collector
. - Install the dependencies using
npm install
- Consider to use
npm link
to make the commandwebsite-evidence-collector
outside of the project folder.
- some recorded HTTP cookies have not yet information on their origin (log data)
- fix bugs in HAR creation and verify accuracy, see https://github.com/Everettss/puppeteer-har/issues and New HAR page doesn't appear to be created upon navigation chrome-har#19
- prevent browsing to non-HTML pages (PDF, ZIP, etc) by checking the document mime-type in the HTTP HEAD response
- improve reproducibility by employing only RNG with optionally provided seed, see: No mechanism to use seeded random generation lodash#3289
- optionally store web pages matching the keywords in markdown format, see https://justmarkup.com/articles/2019-01-04-using-puppeteer-to-crawl-pages-and-save-them-as-markdown-files/
- puppeteer sandbox online: https://puppeteersandbox.com/
- opensource puppeteer sandbox: https://github.com/ebidel/try-puppeteer, online at https://try-puppeteer.appspot.com/
- puppeteer API documentation: https://pptr.dev/
- puppeteer examples: https://github.com/checkly/puppeteer-examples
- puppeteer with chrome-as-a-service: https://github.com/joelgriffith/browserless
- stacktrace.js documentation: https://www.stacktracejs.com/#!/docs/stacktrace-js
- Chrome DevTools Protocol Documentation: https://chromedevtools.github.io/devtools-protocol/
Use of Hooks for Restructuring Source Code:
- https://www.npmjs.com/package/before-after-hook
- https://www.npmjs.com/package/promised-hooks
- https://www.npmjs.com/package/grappling-hook
- Robert Riemann (European Data Protection Supervisor, initial author)
This work, excluding filter lists, is distributed under the European Union Public Licence (the ‘EUPL’). Please find the terms in the file LICENSE.txt.
Filter lists in the assets/
directory are authored by the EasyList authors (https://easylist.to/) and are for your convenience distributed together with this work under their respective license as indicated in their file headers.