diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2025-03-16 22:15:05 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-16 22:15:05 +0600 |
commit | b8a57c83c7a44242e61c2a406adb9866f64882e1 (patch) | |
tree | a78b94cda6773276c23f95ec6fc05fd1a271699d | |
parent | 1b9bf14b956793c744ed5f01e38ca788ab125f1f (diff) | |
parent | 618e0ad3f008d1d6bfcdf974c3de664d783b3729 (diff) | |
download | rspamd-b8a57c83c7a44242e61c2a406adb9866f64882e1.tar.gz rspamd-b8a57c83c7a44242e61c2a406adb9866f64882e1.zip |
Merge pull request #5389 from fatalbanana/openphish
[Fix] Update default URL for openphish
-rw-r--r-- | conf/modules.d/phishing.conf | 2 | ||||
-rw-r--r-- | src/plugins/lua/phishing.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/modules.d/phishing.conf b/conf/modules.d/phishing.conf index a6531e689..076f5964f 100644 --- a/conf/modules.d/phishing.conf +++ b/conf/modules.d/phishing.conf @@ -17,7 +17,7 @@ phishing { # Disabled by default openphish_enabled = false; openphish_premium = false; - openphish_map = "https://www.openphish.com/feed.txt"; + openphish_map = "https://raw.githubusercontent.com/openphish/public_feed/refs/heads/main/feed.txt"; # Phishtank is disabled by default in the module, so let's enable it here explicitly phishtank_enabled = true; diff --git a/src/plugins/lua/phishing.lua b/src/plugins/lua/phishing.lua index 3f5c9e634..4dc3fd924 100644 --- a/src/plugins/lua/phishing.lua +++ b/src/plugins/lua/phishing.lua @@ -39,7 +39,7 @@ local anchor_exceptions_maps = {} local strict_domains_maps = {} local phishing_feed_exclusion_map = nil local generic_service_map = nil -local openphish_map = 'https://www.openphish.com/feed.txt' +local openphish_map = 'https://raw.githubusercontent.com/openphish/public_feed/refs/heads/main/feed.txt' local phishtank_suffix = 'phishtank.rspamd.com' -- Not enabled by default as their feed is quite large local openphish_premium = false |