commit 0b88d35: [Minor] Fix bit operations logic
Vsevolod Stakhov
vsevolod at highsecure.ru
Thu May 13 20:42:05 UTC 2021
Author: Vsevolod Stakhov
Date: 2021-05-13 21:36:05 +0100
URL: https://github.com/rspamd/rspamd/commit/0b88d35b45dcea804e47a9236a5e0244b9b70c4e (HEAD -> master)
[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
More information about the Commits
mailing list