aboutsummaryrefslogtreecommitdiff
path: root/utils/malicious_sites_download.sh
blob: 599385b93bf6ddecf8aef3d484e5ec3c73706535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash
set -e

cd "$(dirname "${0}")" || exit 1
. ./common.sh || exit 1

# NDPI_PROTOCOL_CATEGORY_MALWARE = 100
LIST=../lists/100_malware.list

TMP=/tmp/mal.json
ORIGIN="https://hole.cert.pl/domains/domains.json"


printf '(1) Downloading file... %s\n' "${ORIGIN}"
http_response=$(curl -s -o ${TMP} -w "%{http_code}" ${ORIGIN})
check_http_response "${http_response}"
is_file_empty "${TMP}"

printf '%s\n' "(2) Processing Domains..."
jq -r '.[] | select(.DeleteDate="")' < ${TMP} | sed -n 's/^[^"]*"DomainAddress": "\([^"]*\)".*$/\1/gp' >${LIST}

rm -f "${TMP}"
exit 0