aboutsummaryrefslogtreecommitdiff
path: root/utils/whatsapp_ip_addresses_download.sh
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2023-11-17 12:26:23 +0100
committerGitHub <noreply@github.com>2023-11-17 12:26:23 +0100
commitbdb73db1a49d271bfb958eaabcce489013d84f3c (patch)
treeccc307b0defcda97bacd2620340dc9d645421b08 /utils/whatsapp_ip_addresses_download.sh
parent6c9571d9a92b8c71bd7b8a565f062a49bd7d4d49 (diff)
IP lists: aggregate addresses wherever possible (#2152)
See #2150
Diffstat (limited to 'utils/whatsapp_ip_addresses_download.sh')
-rwxr-xr-xutils/whatsapp_ip_addresses_download.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/utils/whatsapp_ip_addresses_download.sh b/utils/whatsapp_ip_addresses_download.sh
index c3b251e6e..cddb21389 100755
--- a/utils/whatsapp_ip_addresses_download.sh
+++ b/utils/whatsapp_ip_addresses_download.sh
@@ -8,6 +8,7 @@ cd "$(dirname "${0}")" || exit 1
DEST=../src/lib/inc_generated/ndpi_whatsapp_match.c.inc
TMP=/tmp/wa.zip
LIST=/tmp/wa.list
+LIST_MERGED=/tmp/wa.list_m
IP_LINK_URL='https://developers.facebook.com/docs/whatsapp/guides/network-requirements/'
@@ -23,8 +24,10 @@ is_file_empty "${TMP}"
echo "(3) Processing IP addresses..."
unzip -p /tmp/wa.zip "WhatsApp IPs (IPv4 Only) 2022-07-26 - 2022-07-30.txt" > "${LIST}" #TODO: ipv6
is_file_empty "${LIST}"
-./ipaddr2list.py "${LIST}" NDPI_PROTOCOL_WHATSAPP > "${DEST}"
-rm -f "${TMP}" "${LIST}"
+./mergeipaddrlist.py $LIST > $LIST_MERGED
+is_file_empty "${LIST_MERGED}"
+./ipaddr2list.py "${LIST_MERGED}" NDPI_PROTOCOL_WHATSAPP > "${DEST}"
+rm -f "${TMP}" "${LIST}" "${LIST_MERGED}"
is_file_empty "${DEST}"
echo "(4) WhatsApp IPs are available in $DEST"