1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
--[[
Copyright (c) 2019, Vsevolod Stakhov <vsevolod@highsecure.ru>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]--
--[[[
-- @module lua_magic/heuristics
-- This module contains heuristics for some specific cases
--]]
local rspamd_trie = require "rspamd_trie"
local rspamd_util = require "rspamd_util"
local lua_util = require "lua_util"
local bit = require "bit"
local fun = require "fun"
local N = "lua_magic"
local msoffice_trie
local msoffice_patterns = {
doc = {[[WordDocument]]},
xls = {[[Workbook]], [[Book]]},
ppt = {[[PowerPoint Document]], [[Current User]]},
vsd = {[[VisioDocument]]},
}
local msoffice_trie_clsid
local msoffice_clsids = {
doc = {[[0609020000000000c000000000000046]]},
xls = {[[1008020000000000c000000000000046]], [[2008020000000000c000000000000046]]},
ppt = {[[108d81649b4fcf1186ea00aa00b929e8]]},
msg = {[[46f0060000000000c000000000000046]], [[0b0d020000000000c000000000000046]]},
msi = {[[84100c0000000000c000000000000046]]},
}
local msoffice_clsid_indexes = {}
local msoffice_patterns_indexes = {}
local exports = {}
local function compile_msoffice_trie(log_obj)
if not msoffice_trie then
-- Directory names
local strs = {}
for ext,pats in pairs(msoffice_patterns) do
for _,pat in ipairs(pats) do
-- These are utf16 strings in fact...
strs[#strs + 1] = '^' ..
table.concat(
fun.totable(
fun.map(function(c) return c .. [[\x{00}]] end,
fun.iter(pat))))
msoffice_patterns_indexes[#msoffice_patterns_indexes + 1] = ext
end
end
msoffice_trie = rspamd_trie.create(strs, rspamd_trie.flags.re)
-- Clsids
strs = {}
for ext,pats in pairs(msoffice_clsids) do
for _,pat in ipairs(pats) do
-- Convert hex to re
local hex_table = {}
for i=1,#pat,2 do
local subc = pat:sub(i, i + 1)
hex_table[#hex_table + 1] = string.format('\\x{%s}', subc)
end
strs[#strs + 1] = '^' .. table.concat(hex_table) .. '$'
msoffice_clsid_indexes[#msoffice_clsid_indexes + 1] = ext
end
end
msoffice_trie_clsid = rspamd_trie.create(strs, rspamd_trie.flags.re)
end
end
local function detect_ole_format(input, log_obj)
local inplen = #input
if inplen < 0x31 + 4 then
lua_util.debugm(N, log_obj, "short length: %s", inplen)
return nil
end
compile_msoffice_trie(log_obj)
local bom,sec_size = rspamd_util.unpack('<I2<I2', input:span(29, 4))
if bom == 0xFFFE then
bom = '<'
else
lua_util.debugm(N, log_obj, "bom file!: %s", bom)
bom = '>'; sec_size = bit.bswap(sec_size)
end
if sec_size < 7 or sec_size > 31 then
lua_util.debugm(N, log_obj, "bad sec_size: %s", sec_size)
return nil
end
sec_size = 2 ^ sec_size
-- SecID of first sector of the directory stream
local directory_offset = (rspamd_util.unpack(bom .. 'I4', input:span(0x31, 4)))
* sec_size + 512 + 1
lua_util.debugm(N, log_obj, "directory: %s", directory_offset)
if inplen < directory_offset then
lua_util.debugm(N, log_obj, "short length: %s", inplen)
return nil
end
local function process_dir_entry(offset)
local dtype = input:at(offset + 66)
lua_util.debugm(N, log_obj, "dtype: %s, offset: %s", dtype, offset)
if dtype == 5 then
-- Extract clsid
local matches = msoffice_trie_clsid:match(input:span(offset + 80, 16))
if matches then
for n,_ in pairs(matches) do
if msoffice_clsid_indexes[n] then
lua_util.debugm(N, log_obj, "found valid clsid for %s",
msoffice_clsid_indexes[n])
return true,msoffice_clsid_indexes[n]
end
end
end
return true,nil
elseif dtype == 2 then
local matches = msoffice_trie:match(input:span(offset, 64))
if matches then
for n,_ in pairs(matches) do
if msoffice_patterns_indexes[n] then
return true,msoffice_patterns_indexes[n]
end
end
end
return true,nil
elseif dtype >= 0 and dtype < 5 then
-- Bad type
return true,nil
end
return false,nil
end
repeat
local res,ext = process_dir_entry(directory_offset)
if res and ext then
return ext,60
end
if not res then
break
end
directory_offset = directory_offset + 128
until directory_offset >= inplen
end
exports.ole_format_heuristic = detect_ole_format
local function process_detected(res)
local extensions = lua_util.keys(res)
if #extensions > 0 then
table.sort(extensions, function(ex1, ex2)
return res[ex1] > res[ex2]
end)
return extensions,res[extensions[1]]
end
return nil
end
local function detect_archive_flaw(part, arch)
local arch_type = arch:get_type()
local res = {
docx = 0,
xlsx = 0,
pptx = 0,
jar = 0,
odt = 0,
odp = 0,
ods = 0
} -- ext + confidence pairs
-- General msoffice patterns
local function add_msoffice_confidence(incr)
res.docx = res.docx + incr
res.xlsx = res.xlsx + incr
res.pptx = res.pptx + incr
end
if arch_type == 'zip' then
-- Find specific files/folders in zip file
local files = arch:get_files() or {}
for _,file in ipairs(files) do
if file == '[Content_Types].xml' then
add_msoffice_confidence(10)
elseif file == 'xl/' then
res.xlsx = res.xlsx + 30
elseif file == 'word/' then
res.xlsx = res.docx + 30
elseif file == 'ppt/' then
res.xlsx = res.pptx + 30
elseif file == 'META-INF/manifest.xml' then
-- Apply ODT detection logic
local content = part:get_content()
if #content > 80 then
-- https://lists.oasis-open.org/archives/office/200505/msg00006.html
local start_span = content:span(30, 50)
local mp = tostring(start_span:span(1, 8))
if mp == 'mimetype' then
local spec_type = tostring(start_span:span(9))
if spec_type:find('vnd.oasis.opendocument.text') then
res.odt = 40
elseif spec_type:find('vnd.oasis.opendocument.spreadsheet') then
res.ods = 40
elseif spec_type:find('vnd.oasis.opendocument.formula') then
res.ods = 40
elseif spec_type:find('vnd.oasis.opendocument.chart') then
res.ods = 40
elseif spec_type:find('vnd.oasis.opendocument.presentation') then
res.odp = 40
elseif spec_type:find('vnd.oasis.opendocument.image') then
-- Assume image as odt
res.odt = 40
elseif spec_type:find('vnd.oasis.opendocument.graphics') then
-- Assume image as odt
res.odt = 40
end
end
end
end
end
local ext,weight = process_detected(res)
if weight >= 40 then
return ext,weight
end
end
return arch_type:lower(),40
end
exports.mime_part_heuristic = function(part)
if part:is_text() then
if part:get_text():is_html() then
return 'html',60
else
return 'txt',60
end
end
if part:is_image() then
local img = part:get_image()
return img:get_type():lower(),60
end
if part:is_archive() then
local arch = part:get_archive()
return detect_archive_flaw(part, arch)
end
return nil
end
return exports
|