Skip to content

Commit

Permalink
[mv3] Replace "30-day Phishing Domain List" with "Malicious URL Block…
Browse files Browse the repository at this point in the history
…list"

As per team feedback.
  • Loading branch information
gorhill committed Dec 9, 2024
1 parent 20a570e commit 0955438
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions platform/mv3/make-rulesets.js
Original file line number Diff line number Diff line change
Expand Up @@ -1288,11 +1288,11 @@ async function main() {

// Handpicked rulesets from abroad
await rulesetFromURLs({
id: 'nrd.30day.phishing',
name: '30-day Phishing Domain List',
id: 'urlhaus.full',
name: 'Malicious URL Blocklist',
enabled: true,
urls: [ 'https://raw.githubusercontent.com/xRuffKez/NRD/refs/heads/main/lists/30-day_phishing/domains-only/nrd-phishing-30day.txt' ],
homeURL: 'https://github.com/xRuffKez/NRD?tab=readme-ov-file',
urls: [ 'https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-domains.txt' ],
homeURL: 'https://gitlab.com/malware-filter/urlhaus-filter',
});

await rulesetFromURLs({
Expand Down

2 comments on commit 0955438

@JobcenterTycoon
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gorhill why using the full list instead of the list which sorts out obsolete entrys?

https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt

@gorhill
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

README says:

However, the test [for online availability] is not 100% accurate and some malicious urls that are otherwise accessible may be missed. If bandwidth (9 MB/day) is not a constraint, I recommend the regular version

Please sign in to comment.