feat: mirror oisd blocklist

This commit is contained in:
MDLeom 2021-04-07 09:54:48 +00:00
parent 1e42aca726
commit 8176c5f6b3
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 16 additions and 1 deletions

View File

@ -2,16 +2,31 @@ image: alpine:latest
pages: pages:
before_script: before_script:
- apk update && apk add git brotli - apk update && apk add git brotli curl
- git clone --depth 5 https://gitlab.com/curben/urlhaus-filter.git urlhaus-filter/ - git clone --depth 5 https://gitlab.com/curben/urlhaus-filter.git urlhaus-filter/
- git clone --depth 5 https://gitlab.com/curben/phishing-filter.git phishing-filter/ - git clone --depth 5 https://gitlab.com/curben/phishing-filter.git phishing-filter/
- git clone --depth 5 https://gitlab.com/curben/pup-filter.git pup-filter/ - git clone --depth 5 https://gitlab.com/curben/pup-filter.git pup-filter/
- mkdir -p oisd/
- curl -L https://abp.oisd.nl/basic/ -o oisd/abp_light.txt
- curl -L https://abp.oisd.nl/ -o oisd/abp.txt
- curl -L https://dbl.oisd.nl/basic/ -o oisd/dbl_light.txt
- curl -L https://dbl.oisd.nl/ -o oisd/dbl.txt
- curl -L https://dblw.oisd.nl/basic/ -o oisd/dblw_light.txt
- curl -L https://dblw.oisd.nl/ -o oisd/dblw.txt
- curl -L https://hosts.oisd.nl/basic/ -o oisd/hosts_light.txt
- curl -L https://hosts.oisd.nl/ -o oisd/hosts.txt
- curl -L https://dnsmasq.oisd.nl/basic/ -o oisd/dnsmasq_light.txt
- curl -L https://dnsmasq.oisd.nl/ -o oisd/dnsmasq.txt
- curl -L https://rpz.oisd.nl/basic/ -o oisd/rpz_light.txt
- curl -L https://rpz.oisd.nl/ -o oisd/rpz.txt
script: script:
- mkdir -p public/ - mkdir -p public/
- cp urlhaus-filter/urlhaus-filter* public/ - cp urlhaus-filter/urlhaus-filter* public/
- cp phishing-filter/dist/phishing-filter* public/ - cp phishing-filter/dist/phishing-filter* public/
- cp pup-filter/dist/pup-filter* public/ - cp pup-filter/dist/pup-filter* public/
- cp oisd/* public/
- find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec gzip -f -k -9 {} \; - find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec gzip -f -k -9 {} \;
- find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec brotli -f -k -9 {} \; - find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec brotli -f -k -9 {} \;