From 0b88d35b45dcea804e47a9236a5e0244b9b70c4e Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 13 May 2021 21:36:05 +0100 Subject: [PATCH] [Minor] Fix bit operations logic --- rules/misc.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/rules/misc.lua b/rules/misc.lua index a7e77516d..2e5f38800 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -127,16 +127,17 @@ rspamd_config:register_symbol({ local obscured_id = rspamd_config:register_symbol{ callback = function(task) local susp_urls = task:get_urls_filtered({ 'obscured', 'zw_spaces'}) - local obs_flag = url_flags_tab.obscured - local zw_flag = url_flags_tab.zw_spaces - if susp_urls then + if susp_urls and susp_urls[1] then + local obs_flag = url_flags_tab.obscured + local zw_flag = url_flags_tab.zw_spaces + for _,u in ipairs(susp_urls) do local fl = u:get_flags_num() - if bit.band(fl, obs_flag) then + if bit.band(fl, obs_flag) ~= 0 then task:insert_result('R_SUSPICIOUS_URL', 1.0, u:get_host()) end - if bit.band(fl, zw_flag) then + if bit.band(fl, zw_flag) ~= 0 then task:insert_result('ZERO_WIDTH_SPACE_URL', 1.0, u:get_host()) end end -- 2.39.5