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 /src | |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/phishing.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |