feat: add botnet-filter
https://gitlab.com/malware-filter/botnet-filter
This commit is contained in:
parent
9c7939373b
commit
6f0c31c8cf
|
@ -1,8 +1,13 @@
|
|||
# Malicious URL Blocklist
|
||||
|
||||
> Announcement (2055/05/21): curben.gitlab.io has been migrated to malware-filter.gitlab.io
|
||||
Blocklists mirror of
|
||||
|
||||
Blocklists mirror of [urlhaus-filter](https://gitlab.com/malware-filter/urlhaus-filter), [phishing-filter](https://gitlab.com/malware-filter/phishing-filter), [pup-filter](https://gitlab.com/malware-filter/pup-filter) and [tracking-filter](https://gitlab.com/malware-filter/tracking-filter).
|
||||
- [urlhaus-filter](https://gitlab.com/malware-filter/urlhaus-filter)
|
||||
- [phishing-filter](https://gitlab.com/malware-filter/phishing-filter)
|
||||
- [pup-filter](https://gitlab.com/malware-filter/pup-filter)
|
||||
- [tracking-filter](https://gitlab.com/malware-filter/tracking-filter)
|
||||
- [vn-badsite-filter](https://gitlab.com/malware-filter/vn-badsite-filter)
|
||||
- [botnet-filter](https://gitlab.com/malware-filter/botnet-filter)
|
||||
|
||||
## FAQ and Guides
|
||||
|
||||
|
|
|
@ -24,7 +24,8 @@ const projects = [
|
|||
'phishing-filter',
|
||||
'pup-filter',
|
||||
'tracking-filter',
|
||||
'vn-badsite-filter'
|
||||
'vn-badsite-filter',
|
||||
'botnet-filter'
|
||||
]
|
||||
const oisdFilters = {
|
||||
'https://abp.oisd.nl/basic/': 'oisd_abp_light.txt',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#!/bin/sh
|
||||
|
||||
# works best on busybox sh
|
||||
# works best on busybox ash
|
||||
|
||||
set -efux -o pipefail
|
||||
|
||||
|
@ -19,6 +19,7 @@ curl "https://gitlab.com/malware-filter/phishing-filter/-/jobs/artifacts/main/do
|
|||
curl "https://gitlab.com/malware-filter/pup-filter/-/jobs/artifacts/main/download?job=pages" -o "pup-filter.zip"
|
||||
curl "https://gitlab.com/malware-filter/tracking-filter/-/jobs/artifacts/main/download?job=pages" -o "tracking-filter.zip"
|
||||
curl "https://gitlab.com/malware-filter/vn-badsite-filter/-/jobs/artifacts/main/download?job=pages" -o "vn-badsite-filter.zip"
|
||||
curl "https://gitlab.com/malware-filter/botnet-filter/-/jobs/artifacts/main/download?job=pages" -o "botnet-filter.zip"
|
||||
|
||||
for zipfile in $(find . -name "*.zip" -type f)
|
||||
do
|
||||
|
|
Loading…
Reference in New Issue