#!/bin/shcd"$(dirname"${0}")"DEST=../src/lib/inc_generated/ndpi_whatsapp_match.c.inc
TMP=/tmp/wa.zip
LIST=/tmp/wa.list
# https://developers.facebook.com/docs/whatsapp/guides/network-requirements/ORIGIN="https://scontent.fmxp6-1.fna.fbcdn.net/v/t39.8562-6/218944277_794653217800107_785885630662402277_n.zip?_nc_cat=102&ccb=1-5&_nc_sid=ae5e01&_nc_ohc=CxWH4uR6uPsAX-Yga3M&_nc_ht=scontent.fmxp6-1.fna&oh=00_AT9gC0NiHKwmgoBdNX9jbVbxtciJ8HzeGdOLj35n3kWeUw&oe=6201B6A9"echo"(1) Downloading file... ${ORIGIN}"http_response=$(curl-s-o$TMP-w"%{http_code}"${ORIGIN})if["$http_response"!="200"];thenecho"Error $http_response: you probably need to update the list url!"return0# WhatsApp URL broken: set this to 1 when the URL was fixedfiecho"(2) Processing IP addresses..."
zcat$TMP>$LIST
./ipaddr2list.py$LISTNDPI_PROTOCOL_WHATSAPP>$DEST
rm-f$TMP$LISTecho"(3) WhatsApp IPs are available in $DEST"return0