Browse Source

[Minor] Ops, reverse scoring logic

tags/1.8.0
Vsevolod Stakhov 5 years ago
parent
commit
3f92e366ca
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/plugins/lua/phishing.lua

+ 2
- 2
src/plugins/lua/phishing.lua View File

@@ -145,9 +145,9 @@ local function phishing_cb(task)
local function host_host_path_cb(_, _, results, err)
if not err and results then
if not query then
task:insert_result(phish_symbol, 0.3, results)
else
task:insert_result(phish_symbol, 1.0, results)
else
task:insert_result(phish_symbol, 0.3, results)
end
end
end

Loading…
Cancel
Save