diff options
author | Toni <matzeton@googlemail.com> | 2022-08-03 12:03:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 12:03:36 +0200 |
commit | ac24b35b1fa36f8df6d586742200a0dc2d54f59e (patch) | |
tree | 5bc908a8d240de648cc37975e798c6f9ede2f632 /utils | |
parent | c3c73e7bff903ec6ea939b61890d4b4214569198 (diff) |
Add Discord dissector. (#1694)
* fixed RiotGames false positive
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/asn_update.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/asn_update.sh b/utils/asn_update.sh index 9c716147c..ec2dab9d2 100755 --- a/utils/asn_update.sh +++ b/utils/asn_update.sh @@ -149,6 +149,11 @@ DEST=../src/lib/inc_generated/ndpi_asn_avast.c.inc create_list NDPI_PROTOCOL_AVAST $DEST "AS198605" echo "(3) AVAST IPs are available in $DEST" +echo "(1) Downloading Discord..." +DEST=../src/lib/inc_generated/ndpi_asn_discord.c.inc +create_list NDPI_PROTOCOL_DISCORD $DEST "AS49544" +echo "(3) Discord IPs are available in $DEST" + if [ ${TOTAL_ASN} -eq ${FAILED_ASN} ]; then printf '%s: %s\n' "${0}" "All download(s) failed, ./get_routes_by_asn.sh broken?" exit 1 |