From d4f84e97f9ab05a76e00371096cf1cdf5d76aec8 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Wed, 9 Oct 2024 20:52:39 +0800 Subject: [PATCH] Fix: remove outdated curben filter mirror --- Build/constants/reject-data-source.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/Build/constants/reject-data-source.ts b/Build/constants/reject-data-source.ts index 475b2e94..4b03d182 100644 --- a/Build/constants/reject-data-source.ts +++ b/Build/constants/reject-data-source.ts @@ -50,19 +50,24 @@ export const DOMAIN_LISTS_EXTRA: HostsSource[] = [ // 'https://pup-filter.pages.dev/pup-filter-agh.txt' // The PUP filter has paused the update since 2023-05, so we set a 14 days cache ttl, and move it to extra [ - 'https://curbengh.github.io/pup-filter/pup-filter-domains.txt', + 'https://pup-filter.pages.dev/pup-filter-domains.txt', [ - 'https://pup-filter.pages.dev/pup-filter-domains.txt', + 'https://malware-filter.pages.dev/pup-filter-domains.txt', + 'https://malware-filter.gitlab.io/malware-filter/pup-filter-domains.txt', 'https://malware-filter.gitlab.io/pup-filter/pup-filter-domains.txt' + // 'https://curbengh.github.io/pup-filter/pup-filter-domains.txt', + ], true, TTL.TWO_WEEKS() ], // Curben's UrlHaus Malicious URL Blocklist [ - 'https://curbengh.github.io/urlhaus-filter/urlhaus-filter-domains.txt', + 'https://urlhaus-filter.pages.dev/urlhaus-filter-domains.txt', [ - 'https://urlhaus-filter.pages.dev/urlhaus-filter-domains.txt', + 'https://malware-filter.pages.dev/urlhaus-filter-domains.txt', + 'https://malware-filter.gitlab.io/urlhaus-filter/urlhaus-filter-domains.txt', 'https://malware-filter.gitlab.io/malware-filter/urlhaus-filter-domains.txt' + // 'https://curbengh.github.io/urlhaus-filter/urlhaus-filter-domains.txt', ], true, TTL.THREE_HOURS() ], @@ -73,10 +78,12 @@ export const DOMAIN_LISTS_EXTRA: HostsSource[] = [ export const PHISHING_DOMAIN_LISTS_EXTRA: HostsSource[] = [ [ - 'https://curbengh.github.io/phishing-filter/phishing-filter-domains.txt', + 'https://phishing-filter.pages.dev/phishing-filter-domains.txt', [ - 'https://phishing-filter.pages.dev/phishing-filter-domains.txt', + 'https://malware-filter.pages.dev/phishing-filter-domains.txt', + 'https://malware-filter.gitlab.io/phishing-filter/phishing-filter-domains.txt', 'https://malware-filter.gitlab.io/malware-filter/phishing-filter-domains.txt' + // 'https://curbengh.github.io/phishing-filter/phishing-filter-domains.txt' ], true, TTL.THREE_HOURS() ],