diff options
author | Toni <matzeton@googlemail.com> | 2023-05-28 12:45:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 12:45:44 +0200 |
commit | 6da3474203fc2ff5981f6c73f7ad02fa81138166 (patch) | |
tree | be8d74931f416143291ffaa1707cfa2f2103c82b /utils/gambling_sites_download.sh | |
parent | b11e6a453b0b870957663d214d9f1a0fdf49af90 (diff) |
Improved helper scripts. (#1986)
* added additional (more restrictive) checks
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'utils/gambling_sites_download.sh')
-rwxr-xr-x | utils/gambling_sites_download.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/gambling_sites_download.sh b/utils/gambling_sites_download.sh index 614e7c694..3340cf237 100755 --- a/utils/gambling_sites_download.sh +++ b/utils/gambling_sites_download.sh @@ -1,17 +1,21 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash set -e cd "$(dirname "${0}")" || exit 1 +. ./common.sh || exit 1 DEST=../src/lib/inc_generated/ndpi_gambling_match.c.inc LIST=/tmp/gambling.list printf '(1) %s\n' "Scraping Illegal Gambling Sites (Belgium)" DOMAINS="$(curl -s 'https://www.gamingcommission.be/en/gaming-commission/illegal-games-of-chance/list-of-illegal-gambling-sites' | sed -n 's/^<td[^>]\+>\(.\+\.[a-zA-Z0-9]\+\)\(\|\/.*[^<]*\)<\/td>/\1/gp' || exit 1)" +is_str_empty "${DOMAINS}" "Please check gambling sites URL and sed REGEX." +printf '(2) %s\n' "Processing IP addresses..." echo "${DOMAINS}" >${LIST} ./hostname2list.py "${LIST}" "Gambling" NDPI_PROTOCOL_GAMBLING NDPI_PROTOCOL_CATEGORY_WEB NDPI_PROTOCOL_UNSAFE >${DEST} rm -f "${LIST}" +is_file_empty "${DEST}" exit 0 |