-
Notifications
You must be signed in to change notification settings - Fork 1
/
adultfilter-aggregator.sh
executable file
·448 lines (360 loc) · 12.2 KB
/
adultfilter-aggregator.sh
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#!/bin/sh
# force sorting to be byte-wise
export LC_ALL="C"
# cURL setup
#
# use compression
# - DISABLE if you encounter unsupported encoding algorithm
# follow redirects
# don't use keepalive
# - there's not reason for it, we're closing the connection as soon
# - as we download the file
# try to guess the timestamp of the remote file
# retry 5 times with 30s delay in between
# fail silently instead of continuing
# don't print out anything (silent)
# add user-agent
# - some websites refuse the connection if the UA is cURL
alias curl='curl --compressed --location --no-keepalive --remote-time --retry 3 --retry-delay 10 --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"'
# force grep to work with text in order to avoid some files being treated as binaries
alias grep='grep --text'
# description / options for this script
HELP_TXT="$(basename "$0") [-h] [-o /<path>] [-t /<path>] [-b /<path>] [-w /<path>]
fetch and concatenate/clean a list of potentially unwanted domains
options:
-h show this help text
-o path for the output file
-t path to a directory, to be used as storage for temporary files
default: /tmp
-b path to a list of domains to block
-w path to a list of domains to whitelist
This program requires: awk, coreutils, curl, grep, gzip, jq, python3 and sed to be installed and accessible."
# fetch and clean "ad_block" rules, some rules
# will be dropped as they are dependent on elements
# or URL parts.
# - <!!><domain><^>
fetch_ad_block_rules() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# remove all comments
grep -v -F '!' < "$TARGET" |\
# remove all exceptions
grep -v -F '@@' |\
# remove url arg
grep -v -F '?' |\
# remove wildcard selectors
grep -v -F '*' |\
# match only the beginning of an address
grep '||'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch and get the domains
# - /feed
fetch_ayashige_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -H "accept: application/json" -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# use jq to grab all domains
jq -r '.[].domain' < "$TARGET"
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch csv and extract fqdn
# - "<id>","<type>","<url>","<date>"
fetch_benkow_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# grab urls
awk -F '";"' '{print $3}' < "$TARGET" |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch and clean domain lists with "#" comments, i.e.
# - <domain> #<comment>
# - #<comment>
fetch_domains_comments() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# remove line comments and preserve the domains
sed -e 's/#.*$//' -e '/^$/d' < "$TARGET" |\
# remove all comments
grep -v '#'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch json-encoded array of domains
# - [ "<domain>" ]
fetch_json_array_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -H "accept: application/json" -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# grab fqdn
jq -r '.[]' < "$TARGET"
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch and clean domain lists with a "hosts" file format
# - <ip><tab|space><domain>
fetch_hosts() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# remove all comments
grep -v '#' < "$TARGET" |\
# remove all ipv4 addresses in format:
# - 127.0.0.1<SPACE>
sed -e 's/127.0.0.1\s//g' |\
# remove all ipv4 addresses in format:
# - 0.0.0.0<SPACE>
sed -e 's/0.0.0.0\s//g' |\
# remove all ipv6 addresses in format:
# - ::<SPACE>
sed -e 's/\:\:\s//g' |\
# remove all ipv6 addresses in format:
# - ::1<SPACE>
sed -e 's/\:\:1\s//g'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch malsilo's feed
# - master-feed.json
fetch_malsilo_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENT_DROP_SITES=$(
# grab urls
jq -r '.data[] | .drop_sites[]' < "$TARGET" |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }'
)
CONTENT_DNS_REQUESTS=$(
# grab urls
jq -r '.data[].network_traffic | select(.dns != null) | .dns[]' < "$TARGET"
)
TEMP_FILE="$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
# save the contents to a temporary file
echo "$CONTENT_DROP_SITES" > "$TEMP_FILE"
echo "$CONTENT_DNS_REQUESTS" >> "$TEMP_FILE"
shift
done
}
# fetch PhishStats's PhishScore CSV
# - "<date>","<score>","<url>","<host>"
fetch_phishstats_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# grab the domains only
awk -F '","' '{print $3}' < "$TARGET" |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch gzipped Phishtank feed
# - verified_online.csv.gz
fetch_phishtank_gz() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# inflate
gzip -c -d "$TARGET" |\
# grab the urls
awk -F ',' '{print $2}' |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }' |\
# strip malformed urls
sed -e 's/\?.*$//g'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch and extract domains from a list with urls
# <http|https://>
# note: URL lists are more prone to false-positives
fetch_url_hosts(){
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# remove all comments
sed '/^#/ d' < "$TARGET" |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
# fetch csv and extract fqdn
# - "<id>","<type>","<url>","<date>"
fetch_viriback_feed() {
while test $# -gt 0
do
TARGET=$(readlink -m "$TEMP_DIR/sources/$(echo "$1" | md5sum - | cut -c 1-32)")
echo " -- $TARGET - $1"
curl -o "$TARGET" -z "$TARGET" -k "$1"
CONTENTS=$(
# grab urls
awk -F ';' '{print $2}' < "$TARGET" |\
# grab the domain from an entry with/without url scheme
awk -F '/' '{ if ($0~"(http|https)://") {print $3} else {print $1} }'
)
# save the contents to a temporary file
echo "$CONTENTS" > "$TEMP_DIR/$(($(date +%s%N)/1000000)).temporary"
shift
done
}
python_idna_encoder() {
python3 -c "
import sys;
for line in sys.stdin:
try:
print(line.strip().encode('idna').decode('ascii'))
except:
pass
"
}
# clean up/format the domain list for final version
sanitize_domain_list() {
cat "$TEMP_DIR"/*.temporary |\
# lowercase everything
awk '{print tolower($0)}' |\
# remove malformed url args
awk -F '?' '{print $1}' |\
# remove "dirty" urls
awk -F '/' '{print $1}' |\
# remove port left-overs
awk -F ':' '{print $1}' |\
# remove the start match and separator symbols
sed -e 's/||//g' -e 's/\^//g' |\
# remove single/double quotes (artifacts from parsing)
sed -e "s/'/ /g" -e 's/\"//g' |\
# remove ips
grep -v '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}$' |\
# remove invalid domain names
grep '\.' |\
# filter out IDNA non-conforming domains
python_idna_encoder |\
# sort (and remove duplicates) entries
sort -u |\
# remove all white-listed domains
grep -Evxf "$WHITELIST"
}
# remove the left-over temporary files
clean_temporary_files() {
# remove the temporary files
rm -rf "$TEMP_DIR"/*.temporary
}
# helper - warn if something is missing
verify_dependencies() {
while test $# -gt 0
do
if ! command -v "$1" >/dev/null 2>&1; then
echo "Missing dependency: $1"
echo ""
echo "You can run this program with -h, to see the list of software dependencies."
exit 1
fi
shift
done
}
while getopts "ho:b:t:w:" opt; do
case $opt in
b) BLOCKLIST="$OPTARG"
;;
h) echo "$HELP_TXT"
exit 1
;;
o) OUT_FILE="$OPTARG"
;;
t) TEMP_DIR="$OPTARG"
;;
w) WHITELIST="$OPTARG"
;;
\?) echo "Invalid option -$OPTARG" >&2
exit 1
;;
esac
done
verify_dependencies "awk" "cat" "curl" "cut" "date" "grep" "gzip" "jq" "md5sum" "mkdir" "python3" "readlink" "sed" "sort" "rm"
if [ -z "$OUT_FILE" ]; then
echo 'Invalid output file path.'
exit 1
fi
if [ -z "$TEMP_DIR" ]; then
TEMP_DIR="/tmp"
fi
if [ "$BLOCKLIST" ]; then
cp "$BLOCKLIST" "$TEMP_DIR/blocklist.temporary"
fi
if [ -z "$WHITELIST" ]; then
WHITELIST="/dev/null"
fi
mkdir -p "$TEMP_DIR/sources"
echo "[*] updating domain list..."
fetch_domains_comments \
"https://raw.githubusercontent.com/t0ny54/adultfilter/main/blocklist.txt" \
"https://raw.githubusercontent.com/anT0ny54/adultfilter/main/blocklist.txt" \
"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/domains/doh-vpn-proxy-bypass.txt"
sanitize_domain_list > "$OUT_FILE"
clean_temporary_files