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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
--[[
Copyright (c) 2016-2017, Vsevolod Stakhov <vsevolod@highsecure.ru>
Copyright (c) 2017, Andrew Lewis <nerf@judo.za.org>
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.
]]--
if confighelp then
return
end
-- A plugin that restores/persists URL tags & calculates reputation
local E = {}
local N = 'url_reputation'
local whitelist, redis_params, redis_incr_script_sha
local settings = {
expire = 86400, -- 1 day
key_prefix = 'Ur.',
symbols = {
white = 'URL_REPUTATION_WHITE',
black = 'URL_REPUTATION_BLACK',
grey = 'URL_REPUTATION_GREY',
neutral = 'URL_REPUTATION_NEUTRAL',
},
foreign_symbols = {
dmarc = 'DMARC_POLICY_ALLOW',
dkim = 'R_DKIM_ALLOW',
spf = 'R_SPF_ALLOW',
},
ignore_surbl = {
URIBL_BLOCKED = true,
DBL_PROHIBIT = true,
SURBL_BLOCKED = true,
},
-- how many messages to score reputation
threshold = 5,
-- set reputation for only so many TLDs
update_limit = 1,
-- query dynamic reputation for up to so many TLDs
query_limit = 100,
-- try find most relevant URL
relevance = true,
}
local scale = {
'white', -- 1
'neutral', -- 2
'grey', -- 3
'black', -- 4
}
local rspamd_logger = require "rspamd_logger"
local rspamd_util = require "rspamd_util"
local lua_util = require "lua_util"
local rspamd_redis = require "lua_redis"
local redis_incr_script = [[
for _, k in ipairs(KEYS) do
redis.call('INCR', k)
end
]]
-- Function to load the script
local function load_scripts(cfg, ev_base)
local function redis_incr_script_cb(err, data)
if err then
rspamd_logger.errx(cfg, 'Increment script loading failed: ' .. err)
else
redis_incr_script_sha = tostring(data)
end
end
rspamd_redis.redis_make_request_taskless(ev_base,
rspamd_config,
nil,
true, -- is write
redis_incr_script_cb, --callback
'SCRIPT', -- command
{'LOAD', redis_incr_script}
)
end
-- Calculates URL reputation
local function url_reputation_check(task)
local tags = {}
local tlds = {}
local tld_count = 0
local reputation = 2
local which
local confidence
-- Insert symbol
local function insert_results()
if which and confidence then
task:insert_result(settings.symbols[scale[reputation]], confidence, which)
end
end
-- Calculate reputation
local function dynamic_reputation()
local subset = {}
local keys = {}
-- Spit out log if INCR fails
local function redis_incr_cb(err)
if err then
rspamd_logger.errx(task, 'couldnt increment reputation: %s', err)
if string.match(err, 'NOSCRIPT') then
load_scripts(rspamd_config, task:get_ev_base())
end
end
end
local function rep_get_cb(err, data)
-- Abort if we couldn't query redis for reputation info
if err then
rspamd_logger.errx(task, 'couldnt get dynamic reputation: %s', err)
return
end
-- Try find worst reputation domain and set reputation accordingly
local i, x, highest = 1, 1, 0
while(data[i]) do
if type(data[i]) == 'string' then
local scores = {}
scores.total = tonumber(data[i])
if scores.total >= settings.threshold then
local highest_k
scores.white = tonumber(data[i+1])
scores.black = tonumber(data[i+2])
scores.grey = tonumber(data[i+3])
scores.neutral = tonumber(data[i+4])
for k, v in pairs(scores) do
if (v > highest) then
highest_k = k
highest = v
end
end
if highest_k == 'black' then
reputation = 4
which = subset[x]
confidence = scores.black / scores.total
elseif highest_k == 'grey' and reputation ~= 4 then
reputation = 3
which = subset[x]
confidence = scores.grey / scores.total
elseif highest_k == 'white' and reputation == 2 then
reputation = 1
which = subset[x]
confidence = scores.white / scores.total
elseif highest_k == 'neutral' and reputation <= 2 then
reputation = 2
which = subset[x]
confidence = scores.neutral / scores.total
end
end
end
i = i + 5
x = x + 1
end
local rk
if which then
-- Update reputation for guilty domain only
rk = {
redis_incr_script_sha,
2,
settings.key_prefix .. which .. '_total',
settings.key_prefix .. which .. '_' .. scale[reputation],
}
else
-- No reputation found, pick some URLs
local most_relevant
if tld_count == 1 then
most_relevant = next(tlds)
end
if settings.relevance then
if not most_relevant then
local dmarc = ((task:get_symbol(settings.foreign_symbols['dmarc']) or E)[1] or E).options
local dkim = ((task:get_symbol(settings.foreign_symbols['dkim']) or E)[1] or E).options
local spf = task:get_symbol(settings.foreign_symbols['spf'])
local hostname = task:get_hostname()
if hostname then
hostname = rspamd_util.get_tld(hostname)
end
if spf then
local from = task:get_from(1)
if ((from or E)[1] or E).domain then
spf = rspamd_util.get_tld(from[1]['domain'])
else
local helo = task:get_helo()
if helo then
spf = rspamd_util.get_tld(helo)
end
end
end
for _, t in ipairs(tlds) do
if t == dmarc then
most_relevant = t
break
elseif t == dkim then
most_relevant = t
break
elseif t == spf then
most_relevant = t
break
elseif t == hostname then
most_relevant = t
break
end
end
if not most_relevant and reputation >= 3 then
-- no authenticated domain, count surbl tags
local max_surbl_guilt
for dom, tag in pairs(tags) do
local guilt = 0
local stags = tag['surbl']
if stags then
for k in pairs(stags) do
if not settings.ignore_surbl[k] then
guilt = guilt + 1
end
end
if guilt > 1 then
if not most_relevant then
most_relevant = dom
max_surbl_guilt = guilt
elseif guilt > max_surbl_guilt then
most_relevant = dom
max_surbl_guilt = guilt
end
end
end
end
end
end
end
rk = {redis_incr_script_sha, 0}
local added = 0
if most_relevant then
tlds = {most_relevant}
which = most_relevant
end
for t in pairs(tlds) do
if settings.update_limit and added > settings.update_limit then
rspamd_logger.warnx(task, 'Not updating reputation on all TLDs')
break
end
table.insert(rk, settings.key_prefix .. t .. '_total')
table.insert(rk, settings.key_prefix .. t .. '_' .. scale[reputation])
added = added + 1
end
end
if rk[3] then
rk[2] = (#rk - 2)
local ret = rspamd_redis_make_request(task,
redis_params,
rk[3],
true, -- is write
redis_incr_cb, --callback
'EVALSHA', -- command
rk
)
if not ret then
rspamd_logger.errx(task, 'couldnt schedule increment')
end
end
insert_results()
end
local action = task:get_metric_action('default')
if action == 'reject' then
reputation = 4
elseif action == 'add header' then
reputation = 3
elseif action == 'no action' or action == 'greylist' then
local score = task:get_metric_score('default')[1]
if score < 0 then
reputation = 1
end
end
local added = 0
for k in pairs(tlds) do
if settings.query_limit and added >= settings.query_limit then
rspamd_logger.warnx(task, 'not querying reputation for all TLDs')
break
end
if (not whitelist) or (not whitelist:get_key(k)) then
added = added + 1
table.insert(subset, k)
table.insert(keys, settings.key_prefix .. k .. '_total')
table.insert(keys, settings.key_prefix .. k .. '_white')
table.insert(keys, settings.key_prefix .. k .. '_black')
table.insert(keys, settings.key_prefix .. k .. '_grey')
table.insert(keys, settings.key_prefix .. k .. '_neutral')
end
end
local key = keys[1]
if key then
rspamd_redis_make_request(task,
redis_params,
key,
false, -- is write
rep_get_cb, --callback
'MGET', -- command
keys
)
end
end
-- Figure out what tags are present for each URL
for _, url in ipairs(task:get_urls(false)) do
local tld = url:get_tld()
if not tlds[tld] then
tlds[tld] = true
tld_count = tld_count + 1
end
local utags = url:get_tags()
if next(utags) then
local dom = url:get_tld()
if not tags[dom] then
tags[dom] = {}
end
for ut, utv in pairs(utags) do
if tags[dom][ut] then
for _, e in ipairs(utv) do
table.insert(tags[dom][ut], e)
end
else
tags[dom][ut] = utv
end
end
end
end
if next(tlds) then
dynamic_reputation()
end
end
local opts = rspamd_config:get_all_opt(N)
if not opts then return end
redis_params = rspamd_parse_redis_server(N)
if not redis_params then
rspamd_logger.warnx(rspamd_config, 'no servers are specified, disabling module')
lua_util.disable_module(N, "redis")
return
end
for k, v in pairs(opts) do
if k == 'ignore_surbl' then
if type(v) == 'table' then
if next(v) ~= 1 then
settings[k] = v
else
settings[k] = {}
for _, n in ipairs(v) do
settings[k][n] = true
end
end
end
else
settings[k] = v
end
end
if settings.threshold < 1 then
rspamd_logger.errx(rspamd_config, 'threshold should be >= 1, disabling module')
lua_util.disable_module(N, "config")
return
end
whitelist = rspamd_map_add(N, 'whitelist', 'map', 'URL reputation whitelist')
rspamd_config:add_on_load(function(cfg, ev_base, worker)
load_scripts(cfg, ev_base)
end)
local id = rspamd_config:register_symbol({
name = 'URL_REPUTATION_CHECK',
type = 'postfilter',
callback = url_reputation_check,
priority = 10
})
for _, v in pairs(settings.symbols) do
rspamd_config:register_symbol({
name = v,
parent = id,
type = 'virtual'
})
end
|