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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
|
--[[
Copyright (c) 2018, 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.
]]--
local argparse = require "argparse"
local ansicolors = require "ansicolors"
--local rspamd_util = require "rspamd_util"
local rspamd_task = require "rspamd_task"
local rspamd_logger = require "rspamd_logger"
local lua_meta = require "lua_meta"
local rspamd_url = require "rspamd_url"
local lua_util = require "lua_util"
local ucl = require "ucl"
-- Define command line options
local parser = argparse()
:name "rspamadm mime"
:description "Mime manipulations provided by Rspamd"
:help_description_margin(30)
:command_target("command")
:require_command(true)
parser:option "-c --config"
:description "Path to config file"
:argname("<cfg>")
:default(rspamd_paths["CONFDIR"] .. "/" .. "rspamd.conf")
parser:mutex(
parser:flag "-j --json"
:description "JSON output",
parser:flag "-U --ucl"
:description "UCL output"
)
parser:flag "-C --compact"
:description "Use compactl format"
parser:flag "--no-file"
:description "Do not print filename"
-- Extract subcommand
local extract = parser:command "extract ex e"
:description "Extracts data from MIME messages"
extract:argument "file"
:description "File to process"
:argname "<file>"
:args "+"
extract:flag "-t --text"
:description "Extracts plain text data from a message"
extract:flag "-H --html"
:description "Extracts htm data from a message"
extract:option "-o --output"
:description "Output format ('raw', 'content', 'oneline', 'decoded', 'decoded_utf')"
:argname("<type>")
:convert {
raw = "raw",
content = "content",
oneline = "content_oneline",
decoded = "raw_parsed",
decoded_utf = "raw_utf"
}
:default "content"
extract:flag "-w --words"
:description "Extracts words"
extract:flag "-p --part"
:description "Show part info"
extract:flag "-s --structure"
:description "Show structure info (e.g. HTML tags)"
extract:option "-F --words-format"
:description "Words format ('stem', 'norm', 'raw', 'full')"
:argname("<type>")
:convert {
stem = "stem",
norm = "norm",
raw = "raw",
full = "full",
}
:default "stem"
local stat = parser:command "stat st s"
:description "Extracts statistical data from MIME messages"
stat:argument "file"
:description "File to process"
:argname "<file>"
:args "+"
stat:mutex(
stat:flag "-m --meta"
:description "Lua metatokens",
stat:flag "-b --bayes"
:description "Bayes tokens",
stat:flag "-F --fuzzy"
:description "Fuzzy hashes"
)
stat:flag "-s --shingles"
:description "Show shingles for fuzzy hashes"
local urls = parser:command "urls url u"
:description "Extracts URLs from MIME messages"
urls:argument "file"
:description "File to process"
:argname "<file>"
:args "+"
urls:mutex(
urls:flag "-t --tld"
:description "Get TLDs only",
urls:flag "-H --host"
:description "Get hosts only"
)
urls:flag "-u --unique"
:description "Print only unique urls"
urls:flag "-s --sort"
:description "Sort output"
urls:flag "--count"
:description "Print count of each printed element"
urls:flag "-r --reverse"
:description "Reverse sort order"
local modify = parser:command "modify mod m"
:description "Modifies MIME message"
modify:argument "file"
:description "File to process"
:argname "<file>"
:args "+"
modify:option "-a --add-header"
:description "Adds specific header"
:argname "<header=value>"
:count "*"
modify:option "-r --remove-header"
:description "Removes specific header (all occurrences)"
:argname "<header>"
:count "*"
modify:option "-t --text-footer"
:description "Adds footer to text/plain parts from a specific file"
:argname "<file>"
modify:option "-H --html-footer"
:description "Adds footer to text/html parts from a specific file"
:argname "<file>"
local function load_config(opts)
local _r,err = rspamd_config:load_ucl(opts['config'])
if not _r then
rspamd_logger.errx('cannot parse %s: %s', opts['config'], err)
os.exit(1)
end
_r,err = rspamd_config:parse_rcl({'logging', 'worker'})
if not _r then
rspamd_logger.errx('cannot process %s: %s', opts['config'], err)
os.exit(1)
end
end
local function load_task(opts, fname)
if not fname then
parser:error('no file specified')
end
local res,task = rspamd_task.load_from_file(fname, rspamd_config)
if not res then
parser:error(string.format('cannot read message from %s: %s', fname,
task))
end
if not task:process_message() then
parser:error(string.format('cannot read message from %s: %s', fname,
'failed to parse'))
end
return task
end
local function highlight(fmt, ...)
return ansicolors.white .. string.format(fmt, ...) .. ansicolors.reset
end
local function maybe_print_fname(opts, fname)
if not opts.json and not opts['no-file'] then
rspamd_logger.messagex(highlight('File: %s', fname))
end
end
-- Print elements in form
-- filename -> table of elements
local function print_elts(elts, opts, func)
local fun = require "fun"
if opts.json or opts.ucl then
local fmt = 'json'
if opts.compact then fmt = 'json-compact' end
if opts.ucl then fmt = 'ucl' end
io.write(ucl.to_format(elts, fmt))
else
fun.each(function(fname, elt)
if not opts.json and not opts.ucl then
if func then
elt = fun.map(func, elt)
end
maybe_print_fname(opts, fname)
fun.each(function(e)
io.write(e)
io.write("\n")
end, elt)
end
end, elts)
end
end
local function extract_handler(opts)
local out_elts = {}
local process_func
if opts.words then
-- Enable stemming and urls detection
load_config(opts)
rspamd_url.init(rspamd_config:get_tld_path())
rspamd_config:init_subsystem('langdet')
end
local function maybe_print_text_part_info(part, out)
local fun = require "fun"
if opts.part then
local t = 'plain text'
if part:is_html() then
t = 'html'
end
if not opts.json and not opts.ucl then
table.insert(out,
rspamd_logger.slog('Part: %s: %s, language: %s, size: %s (%s raw), words: %s',
part:get_mimepart():get_digest():sub(1,8),
t,
part:get_language(),
part:get_length(), part:get_raw_length(),
part:get_words_count()))
table.insert(out,
rspamd_logger.slog('Stats: %s',
fun.foldl(function(acc, k, v)
if acc ~= '' then
return string.format('%s, %s:%s', acc, k, v)
else
return string.format('%s:%s', k,v)
end
end, '', part:get_stats())))
table.insert(out, '\n')
end
end
end
local function maybe_print_mime_part_info(part, out)
if opts.part then
if not opts.json and not opts.ucl then
table.insert(out,
rspamd_logger.slog('Mime Part: %s: %s/%s, filename: %s, size: %s',
part:get_digest():sub(1,8),
({part:get_type()})[1],
({part:get_type()})[2],
part:get_filename(),
part:get_length()))
end
end
end
local function print_words(words, full)
local fun = require "fun"
if not full then
return table.concat(words, ' ')
else
return table.concat(
fun.totable(
fun.map(function(w)
-- [1] - stemmed word
-- [2] - normalised word
-- [3] - raw word
-- [4] - flags (table of strings)
return string.format('%s|%s|%s(%s)',
w[3], w[2], w[1], table.concat(w[4], ','))
end, words)
),
' '
)
end
end
for _,fname in ipairs(opts.file) do
local task = load_task(opts, fname)
out_elts[fname] = {}
if not opts.text and not opts.html then
opts.text = true
opts.html = true
end
if opts.words then
local howw = opts['words_format'] or 'stem'
table.insert(out_elts[fname], 'meta_words: ' ..
print_words(task:get_meta_words(howw), howw == 'full'))
end
if opts.text or opts.html then
local mp = task:get_parts() or {}
for _,mime_part in ipairs(mp) do
local how = opts.output
local part
if mime_part:is_text() then part = mime_part:get_text() end
if part and opts.text and not part:is_html() then
maybe_print_text_part_info(part, out_elts[fname])
if opts.words then
local howw = opts['words_format'] or 'stem'
table.insert(out_elts[fname], print_words(part:get_words(howw),
howw == 'full'))
else
table.insert(out_elts[fname], tostring(part:get_content(how)))
end
elseif part and opts.html and part:is_html() then
maybe_print_text_part_info(part, out_elts[fname])
if opts.words then
local howw = opts['words_format'] or 'stem'
table.insert(out_elts[fname], print_words(part:get_words(howw),
howw == 'full'))
else
if opts.structure then
local hc = part:get_html()
local res = {}
process_func = function(k, v)
return rspamd_logger.slog("%s = %s", k, v)
end
hc:foreach_tag('any', function(tag)
local elt = {}
local ex = tag:get_extra()
elt.tag = tag:get_type()
if ex then
elt.extra = ex
end
local content = tag:get_content()
if content then
elt.content = content
end
table.insert(res, elt)
end)
out_elts[fname] = res
else
table.insert(out_elts[fname], tostring(part:get_content(how)))
end
end
end
if not part then
maybe_print_mime_part_info(mime_part, out_elts[fname])
end
end
end
table.insert(out_elts[fname], "")
task:destroy() -- No automatic dtor
end
print_elts(out_elts, opts, process_func)
end
local function stat_handler(opts)
local fun = require "fun"
local out_elts = {}
load_config(opts)
rspamd_url.init(rspamd_config:get_tld_path())
rspamd_config:init_subsystem('langdet,stat') -- Needed to gen stat tokens
local process_func
for _,fname in ipairs(opts.file) do
local task = load_task(opts, fname)
out_elts[fname] = {}
if opts.meta then
local mt = lua_meta.gen_metatokens_table(task)
out_elts[fname] = mt
process_func = function(k, v)
return string.format("%s = %s", k, v)
end
elseif opts.bayes then
local bt = task:get_stat_tokens()
out_elts[fname] = bt
process_func = function(e)
return string.format('%s (%d): "%s"+"%s", [%s]', e.data, e.win, e.t1 or "",
e.t2 or "", table.concat(fun.totable(
fun.map(function(k) return k end, e.flags)), ","))
end
elseif opts.fuzzy then
local parts = task:get_parts() or {}
out_elts[fname] = {}
process_func = function(e)
local ret = string.format('part: %s(%s): %s', e.type, e.file or "", e.digest)
if opts.shingles and e.shingles then
local sgl = {}
for _,s in ipairs(e.shingles) do
table.insert(sgl, string.format('%s: %s+%s+%s', s[1], s[2], s[3], s[4]))
end
ret = ret .. '\n' .. table.concat(sgl, '\n')
end
return ret
end
for _,part in ipairs(parts) do
if not part:is_multipart() then
local text = part:get_text()
if text then
local digest,shingles = text:get_fuzzy_hashes(task:get_mempool())
table.insert(out_elts[fname], {
digest = digest,
shingles = shingles,
type = string.format('%s/%s',
({part:get_type()})[1],
({part:get_type()})[2])
})
else
table.insert(out_elts[fname], {
digest = part:get_digest(),
file = part:get_filename(),
type = string.format('%s/%s',
({part:get_type()})[1],
({part:get_type()})[2])
})
end
end
end
end
task:destroy() -- No automatic dtor
end
print_elts(out_elts, opts, process_func)
end
local function urls_handler(opts)
load_config(opts)
rspamd_url.init(rspamd_config:get_tld_path())
local out_elts = {}
if opts.json then rspamd_logger.messagex('[') end
for _,fname in ipairs(opts.file) do
out_elts[fname] = {}
local task = load_task(opts, fname)
local elts = {}
local function process_url(u)
local s
if opts.tld then
s = u:get_tld()
elseif opts.host then
s = u:get_host()
else
s = u:get_text()
end
if opts.unique then
if elts[s] then
elts[s].count = elts[s].count + 1
else
elts[s] = {
count = 1,
url = u:to_table()
}
end
else
if opts.json then
table.insert(elts, u)
else
table.insert(elts, s)
end
end
end
for _,u in ipairs(task:get_urls(true)) do
process_url(u)
end
local json_elts = {}
local function process_elt(s, u)
if opts.unique then
-- s is string, u is {url = url, count = count }
if not opts.json then
if opts.count then
table.insert(json_elts, string.format('%s : %s', s, u.count))
else
table.insert(json_elts, s)
end
else
local tb = u.url
tb.count = u.count
table.insert(json_elts, tb)
end
else
-- s is index, u is url or string
if opts.json then
table.insert(json_elts, u)
else
table.insert(json_elts, u)
end
end
end
if opts.sort then
local sfunc
if opts.unique then
sfunc = function(t, a, b)
if t[a].count ~= t[b].count then
if opts.reverse then
return t[a].count > t[b].count
else
return t[a].count < t[b].count
end
else
-- Sort lexicography
if opts.reverse then
return a > b
else
return a < b
end
end
end
else
sfunc = function(t, a, b)
local va, vb
if opts.json then
va = t[a]:get_text()
vb = t[b]:get_text()
else
va = t[a]
vb = t[b]
end
if opts.reverse then
return va > vb
else
return va < vb
end
end
end
for s,u in lua_util.spairs(elts, sfunc) do
process_elt(s, u)
end
else
for s,u in pairs(elts) do
process_elt(s, u)
end
end
out_elts[fname] = json_elts
task:destroy() -- No automatic dtor
end
print_elts(out_elts, opts)
end
local function modify_handler(opts)
local rspamd_util = require "rspamd_util"
load_config(opts)
rspamd_url.init(rspamd_config:get_tld_path())
local function newline(task)
local t = task:get_newlines_type()
if t == 'cr' then
return '\r'
elseif t == 'lf' then
return '\n'
end
return '\r\n'
end
local function read_file(file)
local f = assert(io.open(file, "rb"))
local content = f:read("*all")
f:close()
return content
end
local function do_append_footer(task, part, footer, is_multipart)
local newline_s = newline(task)
local tp = part:get_text()
local ct = 'text/plain'
local cte = 'quoted-printable'
if tp:is_html() then
ct = 'text/html'
end
if part:get_cte() == '7bit' then
cte = '7bit'
end
if is_multipart then
io.write(string.format('Content-Type: %s; charset=utf-8%s'..
'Content-Transfer-Encoding: %s%s%s',
ct, newline_s, cte, newline_s, newline_s))
io.flush()
end
local content = tostring(tp:get_content('raw_utf') or '')
local double_nline = newline_s .. newline_s
local nlen = #double_nline
-- Hack, if part ends with 2 newline, then we append it after footer
if content:sub(-(nlen), nlen + 1) == double_nline then
content = string.format('%s%s',
content:sub(-(#newline_s), #newline_s + 1), -- content without last newline
footer)
rspamd_util.encode_qp(content,
80, task:get_newlines_type()):save_in_file(1)
io.write(double_nline)
else
content = content .. footer
rspamd_util.encode_qp(content,
80, task:get_newlines_type()):save_in_file(1)
io.write(double_nline)
end
end
local text_footer, html_footer
if opts['text_footer'] then
text_footer = read_file(opts['text_footer'])
end
if opts['html_footer'] then
html_footer = read_file(opts['html_footer'])
end
for _,fname in ipairs(opts.file) do
local task = load_task(opts, fname)
local newline_s = newline(task)
local need_rewrite_ct = false
local parsed_ct
local seen_cte = false
local function process_headers_cb(name, hdr)
for _,h in ipairs(opts['remove_header']) do
if name:match(h) then
return
end
end
if need_rewrite_ct then
if name:lower() == 'content-type' then
local nct = string.format('%s: %s/%s; charset=utf-8%s',
'Content-Type', parsed_ct.type, parsed_ct.subtype, newline_s)
io.write(nct)
return
elseif name:lower() == 'content-transfer-encoding' then
seen_cte = true
io.write(string.format('%s: %s%s',
'Content-Transfer-Encoding', 'quoted-printable', newline_s))
return
end
end
io.write(hdr.raw)
end
if html_footer or text_footer then
-- We need to take extra care about content-type and cte
local ct = task:get_header('Content-Type')
if ct then
ct = rspamd_util.parse_content_type(ct, task:get_mempool())
end
if ct then
if ct.type and ct.type == 'text' then
if ct.subtype then
if html_footer and (ct.subtype == 'html' or ct.subtype == 'htm') then
need_rewrite_ct = true
elseif text_footer and ct.subtype == 'plain' then
need_rewrite_ct = true
end
else
if text_footer then
need_rewrite_ct = true
end
end
parsed_ct = ct
end
else
-- XXX: Write some content type based on magic?
end
end
task:headers_foreach(process_headers_cb, {full = true})
for _,h in ipairs(opts['add_header']) do
local hname,hvalue = h:match('^([^=]+)=(.+)$')
if hname and hvalue then
io.write(string.format('%s: %s%s', hname,
rspamd_util.fold_header(hname, hvalue, task:get_newlines_type()),
newline_s))
end
end
if not seen_cte and need_rewrite_ct then
io.write(string.format('%s: %s%s',
'Content-Transfer-Encoding', 'quoted-printable', newline_s))
end
-- End of headers
io.write(newline_s)
local boundaries = {}
local cur_boundary
for _,part in ipairs(task:get_parts()) do
local boundary = part:get_boundary()
if part:is_multipart() then
if cur_boundary then
io.write(string.format('--%s%s',
boundaries[#boundaries], newline_s))
end
boundaries[#boundaries + 1] = boundary or '--XXX'
cur_boundary = boundary
io.flush ()
local rh = part:get_raw_headers()
if #rh > 0 then
rh:save_in_file(1)
io.write(newline_s)
io.flush()
end
elseif part:is_message() then
if boundary then
if cur_boundary and boundary ~= cur_boundary then
-- Need to close boundary
io.write(string.format('--%s--%s%s',
boundaries[#boundaries], newline_s, newline_s))
table.remove(boundaries)
cur_boundary = nil
end
io.write(string.format('--%s%s',
boundary, newline_s))
end
io.flush()
part:get_raw_headers():save_in_file(1)
io.write(newline_s)
else
local append_footer = false
local skip_footer = part:is_attachment()
local parent = part:get_parent()
if parent then
local t,st = parent:get_type()
if t == 'multipart' and st == 'signed' then
-- Do not modify signed parts
skip_footer = true
end
end
if text_footer and part:is_text() then
local tp = part:get_text()
if not tp:is_html() then
append_footer = text_footer
end
end
if html_footer and part:is_text() then
local tp = part:get_text()
if tp:is_html() then
append_footer = html_footer
end
end
if boundary then
if cur_boundary and boundary ~= cur_boundary then
-- Need to close boundary
io.write(string.format('--%s--%s%s',
boundaries[#boundaries], newline_s, newline_s))
table.remove(boundaries)
cur_boundary = boundary
end
io.write(string.format('--%s%s',
boundary, newline_s))
end
io.flush()
if append_footer and not skip_footer then
do_append_footer(task, part, append_footer,
parent and parent:is_multipart())
else
part:get_raw_headers():save_in_file(1)
io.write(newline_s)
io.flush()
part:get_raw_content():save_in_file(1)
end
end
end
-- Close remaining
local b = table.remove(boundaries)
while b do
io.write(string.format('--%s--%s', b, newline_s))
if #boundaries > 0 then
io.write(newline_s)
end
b = table.remove(boundaries)
end
task:destroy() -- No automatic dtor
end
end
local function handler(args)
local opts = parser:parse(args)
local command = opts.command
if type(opts.file) == 'string' then
opts.file = {opts.file}
elseif type(opts.file) == 'none' then
opts.file = {}
end
if command == 'extract' then
extract_handler(opts)
elseif command == 'stat' then
stat_handler(opts)
elseif command == 'urls' then
urls_handler(opts)
elseif command == 'modify' then
modify_handler(opts)
else
parser:error('command %s is not implemented', command)
end
end
return {
name = 'mime',
aliases = {'mime_tool'},
handler = handler,
description = parser._description
}
|