diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-13 12:51:23 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-13 12:51:23 +0100 |
commit | 0ea784ef25ed92cd55ba2958c9dd3b5c9140108e (patch) | |
tree | ca9965eaaf70c273b2eec8d6b58819af6d23a61e /rules | |
parent | da5d88e6bda4320fbdbe78a07ea277320098009f (diff) | |
download | rspamd-0ea784ef25ed92cd55ba2958c9dd3b5c9140108e.tar.gz rspamd-0ea784ef25ed92cd55ba2958c9dd3b5c9140108e.zip |
Add `R_SUSPICIOUS_IMAGES` rule.
Diffstat (limited to 'rules')
-rw-r--r-- | rules/html.lua | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/rules/html.lua b/rules/html.lua index ffa7dd917..1cc338491 100644 --- a/rules/html.lua +++ b/rules/html.lua @@ -96,4 +96,48 @@ rspamd_config.R_EMPTY_IMAGE = { score = 2.0, group = 'html', description = 'Message contains empty parts and image' +} + +rspamd_config.R_SUSPICIOUS_IMAGES = { + callback = function(task) + local tp = task:get_text_parts() -- get text parts in a message + + for _, p in ipairs(tp) do + local h = p:get_html() + + if h then + local l = p:get_words_count() + local img = h:get_images() + local pic_words = 0 + + if img then + for _, i in ipairs(img) do + if i['embedded'] then + local dim = i['width'] + i['height'] + + -- do not trigger on small and large images + if dim > 100 and dim < 3000 then + -- We assume that a single picture 100x200 contains approx 3 words of text + pic_words = pic_words + dim / 100 + end + end + end + end + + if l + pic_words > 0 then + local rel = pic_words / (l + pic_words) + + if rel > 0.5 then + return true, (rel - 0.5) * 2 + end + end + end + end + + return false + end, + + score = 5.0, + group = 'html', + description = 'Message contains many suspicious messages' }
\ No newline at end of file |