aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/lua/phishing.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/lua/phishing.lua b/src/plugins/lua/phishing.lua
index 22c0c3cc1..afef48b69 100644
--- a/src/plugins/lua/phishing.lua
+++ b/src/plugins/lua/phishing.lua
@@ -56,12 +56,6 @@ local function phishing_cb(task)
if not found and table.maxn(strict_domains) > 0 then
local tld = purl:get_tld()
if tld then
- for _,rule in ipairs(redirector_domains) do
- if rule['map']:get_key(url:get_tld()) then
- task:insert_result(rule['symbol'], 1, purl:get_host())
- found = true
- end
- end
for _,rule in ipairs(strict_domains) do
if rule['map']:get_key(tld) then
task:insert_result(rule['symbol'], 1, purl:get_host())