mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix bad filter in urlhaus
Related issue: https://github.com/uBlockOrigin/uBOL-home/issues/256
This commit is contained in:
parent
bdc67b1e7f
commit
b7bacc0fc1
1 changed files with 7 additions and 1 deletions
|
|
@ -1291,7 +1291,13 @@ async function main() {
|
|||
id: 'urlhaus.full',
|
||||
name: 'Malicious URL Blocklist',
|
||||
enabled: true,
|
||||
urls: [ 'https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-domains.txt' ],
|
||||
urls: [
|
||||
'https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-domains.txt',
|
||||
],
|
||||
filters: [
|
||||
// https://github.com/uBlockOrigin/uBOL-home/issues/256
|
||||
'192.168.1.1$badfilter',
|
||||
],
|
||||
homeURL: 'https://gitlab.com/malware-filter/urlhaus-filter',
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue