]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Fix] Update default URL for openphish 5389/head
authorAndrew Lewis <nerf@judo.za.org>
Fri, 14 Mar 2025 11:26:57 +0000 (13:26 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Fri, 14 Mar 2025 11:26:57 +0000 (13:26 +0200)
conf/modules.d/phishing.conf
src/plugins/lua/phishing.lua

index a6531e68946c80b24172f41c61d82901614d10e5..076f5964ff7c617c2cc30ddae16618cc93691a4c 100644 (file)
@@ -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;
 
index 3f5c9e63445e9842420f290193cb4cb348270250..4dc3fd924ec805bc76c32c6270167f3df357bf9b 100644 (file)
@@ -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