commit 80d82fd: [Minor] Improve PDF_SUSPICIOUS rule
Vsevolod Stakhov
vsevolod at highsecure.ru
Tue Jun 30 16:28:07 UTC 2020
Author: Vsevolod Stakhov
Date: 2020-06-30 17:25:29 +0100
URL: https://github.com/rspamd/rspamd/commit/80d82fd1bde27d3db317dcdd6d1dc8a25968e24e (HEAD -> master)
[Minor] Improve PDF_SUSPICIOUS rule
---
lualib/lua_content/pdf.lua | 48 +++++++++++++++++++++++++++++++++++++++++++---
rules/content.lua | 2 +-
2 files changed, 46 insertions(+), 4 deletions(-)
diff --git a/lualib/lua_content/pdf.lua b/lualib/lua_content/pdf.lua
index 8b77213af..8a1e16ad0 100644
--- a/lualib/lua_content/pdf.lua
+++ b/lualib/lua_content/pdf.lua
@@ -1294,9 +1294,51 @@ processors.trailer = function(input, task, positions, output)
end
end
-processors.suspicious = function(_, task, _, output)
- lua_util.debugm(N, task, "pdf: found a suspicious pattern")
- output.suspicious = true
+processors.suspicious = function(input, task, positions, output)
+ local suspicious_factor = 0.0
+ local nexec = 0
+ local nencoded = 0
+ local close_encoded = 0
+ local last_encoded
+ for _,match in ipairs(positions) do
+ if match[2] == 1 then
+ -- netsh
+ suspicious_factor = suspicious_factor + 0.5
+ elseif match[2] == 2 then
+ nexec = nexec + 1
+ else
+ nencoded = nencoded + 1
+
+ if last_encoded then
+ if match[1] - last_encoded < 8 then
+ -- likely consecutive encoded chars, increase factor
+ close_encoded = close_encoded + 1
+ end
+ end
+ last_encoded = match[1]
+ end
+ end
+
+ if nencoded > 10 then
+ suspicious_factor = suspicious_factor + nencoded / 10
+ end
+ if nexec > 1 then
+ suspicious_factor = suspicious_factor + nexec / 2.0
+ end
+ if close_encoded > 4 and nencoded - close_encoded < 5 then
+ -- Too many close encoded comparing to the total number of encoded characters
+ suspicious_factor = suspicious_factor + 0.5
+ end
+
+ lua_util.debugm(N, task, 'pdf: found a suspicious patterns: %s exec, %s encoded (%s close), ' ..
+ '%s final factor',
+ nexec, nencoded, close_encoded, suspicious_factor)
+
+ if suspicious_factor > 1.0 then
+ suspicious_factor = 1.0
+ end
+
+ output.suspicious = suspicious_factor
end
local function generic_table_inserter(positions, output, output_key)
diff --git a/rules/content.lua b/rules/content.lua
index d95eeec63..2b8a03ba5 100644
--- a/rules/content.lua
+++ b/rules/content.lua
@@ -30,7 +30,7 @@ local function process_pdf_specific(task, part, specific)
end
if specific.suspicious then
- suspicious_factor = suspicious_factor + 0.7
+ suspicious_factor = suspicious_factor + specific.suspicious
end
if suspicious_factor > 0.5 then
More information about the Commits
mailing list