blob: f007c0c0a1cb44c9656197de516151bd060e30bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/env bash
#
# This script assumes a linux environment
TEMPFILE=$(mktemp)
echo "*** uAssets: updating remote assets..."
declare -A assets
assets=(
['thirdparties/pgl.yoyo.org/as/serverlist']='https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&startdate%5Bday%5D=&startdate%5Bmonth%5D=&startdate%5Byear%5D=&mimetype=plaintext'
['thirdparties/publicsuffix.org/list/effective_tld_names.dat']='https://publicsuffix.org/list/public_suffix_list.dat'
['thirdparties/urlhaus-filter/urlhaus-filter-online.txt']='https://malware-filter.gitlab.io/urlhaus-filter/urlhaus-filter-online.txt'
)
for i in "${!assets[@]}"; do
localURL="$i"
remoteURL="${assets[$i]}"
echo "*** Downloading ${remoteURL}"
if wget -q -T 30 -O "$TEMPFILE" -- "$remoteURL"; then
if [ -s "$TEMPFILE" ]; then
if ! cmp -s "$TEMPFILE" "$localURL"; then
echo " New version found: ${localURL}"
if [ "$1" != "dry" ]; then
mv "$TEMPFILE" "$localURL"
fi
fi
fi
fi
done
|