From 78e3fde355dd583cc71e3dc3090205520e202e85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thirion=20Aur=C3=A9lien?= Date: Wed, 6 Jun 2018 08:56:45 +0200 Subject: [PATCH 1/3] fix tags enabled by default --- var/www/Flask_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/var/www/Flask_server.py b/var/www/Flask_server.py index a03999ab..9c8ad621 100755 --- a/var/www/Flask_server.py +++ b/var/www/Flask_server.py @@ -130,9 +130,9 @@ taxonomies = Taxonomies() for tag in taxonomies.get('infoleak').machinetags(): r_serv_tags.sadd('active_tag_infoleak', tag) for tag in taxonomies.get('gdpr').machinetags(): - r_serv_tags.sadd('active_tag_infoleak', tag) + r_serv_tags.sadd('active_tag_gdpr', tag) for tag in taxonomies.get('fpf').machinetags(): - r_serv_tags.sadd('active_tag_infoleak', tag) + r_serv_tags.sadd('active_tag_fpf', tag) # ============ MAIN ============ From 01e829b02d6581b77b35cd5412e416c99a5a622c Mon Sep 17 00:00:00 2001 From: garanews Date: Wed, 6 Jun 2018 11:05:09 +0200 Subject: [PATCH 2/3] removed -y from pip install command removed -y from pip install command --- installing_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installing_deps.sh b/installing_deps.sh index 6bb73f6b..93a38a1c 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -27,7 +27,7 @@ sudo apt-get install libev-dev libgmp-dev -y sudo apt-get install graphviz -y # install nosetests -sudo pip install nose -y +sudo pip install nose # ssdeep sudo apt-get install libfuzzy-dev -y From efa6c14b29825bed96e9ae8e9a1a12583127f126 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Wed, 20 Jun 2018 08:58:02 +0200 Subject: [PATCH 3/3] chg: GDPR document reference added --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 7788c2be..6e6bfdec 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,10 @@ HOWTO HOWTO are available in [HOWTO.md](HOWTO.md) +Privacy and GDPR +---------------- + +[AIL information leaks analysis and the GDPR in the context of collection, analysis and sharing information leaks](https://www.circl.lu/assets/files/information-leaks-analysis-and-gdpr.pdf) document provides an overview how to use AIL in a lawfulness context especially in the scope of General Data Protection Regulation. Screenshots ===========