diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-10-27 13:58:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-27 13:58:15 +0200 |
commit | e8e4b9e8fff7a71e2770ff5a38e92506b508c72f (patch) | |
tree | 509ec5a182dd3185cf16606859f15cd870461d74 /utils | |
parent | ed17f4d65857c0a336c0a4ebe2bc80bb34d2ed3a (diff) |
IPv6: add support for IPv6 risk tree (#2118)
Fix the script to download crawler addressess
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/crawlers_ip_addresses_download.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/crawlers_ip_addresses_download.sh b/utils/crawlers_ip_addresses_download.sh index 18f95f1df..88ff4aece 100755 --- a/utils/crawlers_ip_addresses_download.sh +++ b/utils/crawlers_ip_addresses_download.sh @@ -61,7 +61,7 @@ is_file_empty "${LIST}" jq -r '.prefixes | .[].ipv6Prefix | select( . != null )' $TMP2 jq -r '.prefixes | .[].ipv6Prefix | select( . != null )' $TMP3 jq -r '.prefixes | .[].ipv6Prefix | select( . != null )' $TMP_BING - grep route6 $TMP_FB | tr -d 'route6:^ ' + grep route6 $TMP_FB | cut -c9- | tr -d ' ' } > $LIST6 is_file_empty "${LIST6}" ./ipaddr2list.py $LIST NDPI_HTTP_CRAWLER_BOT $LIST6 > $DEST |