diff --git a/ivre/config.py b/ivre/config.py index 503b97050c..27edd0e50d 100644 --- a/ivre/config.py +++ b/ivre/config.py @@ -235,7 +235,7 @@ # GeoLite2-* files using `ivre ipdata --import-all`. You should do # that if you get your files from Maxmind. "GeoLite2-dumps.tar.gz": "https://ivre.rocks/data/geolite/GeoLite2-dumps.tar.gz", - "iso3166.csv": "https://dev.maxmind.com/csv-files/codes/iso3166.csv", + "iso3166.csv": "https://dev.maxmind.com/static/csv/codes/iso3166.csv", # This one is not from maxmind -- see https://thyme.apnic.net/ "BGP.raw": "https://thyme.apnic.net/current/data-raw-table", } diff --git a/setup.py b/setup.py index b97656edc5..46fc953df5 100755 --- a/setup.py +++ b/setup.py @@ -214,7 +214,16 @@ def _write_pkg_file(self, file): ), ("share/ivre/honeyd", ["data/.empty"]), ("share/ivre/geoip", ["data/.empty"]), - ("share/ivre/data", ["data/ike-vendor-ids", "data/manuf"]), + ( + "share/ivre/data", + [ + "data/ike-vendor-ids", + "data/manuf", + "data/censys_scanners.txt", + "data/ssigouvfr_scanners.txt", + "data/ukncsc_scanners.txt", + ], + ), ("share/ivre/data/honeyd", ["data/honeyd/sshd"]), ("share/ivre/docker", ["docker/Vagrantfile"]), ("share/ivre/docker/agent", ["docker/agent/Dockerfile"]),