mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

- Recorrected the module name to Files. - Added Files::analyzer_name to get a more readable name for a file analyzer. - Improved and just overall better handled multipart mime transfers in HTTP and SMTP. HTTP now has orig_fuids and resp_fuids log fields since multiple "files" can be transferred with multipart mime in a single request/response pair. SMTP has an fuids field which has file unique IDs for all parts transferred. FTP and IRC have a log field named fuid added because only a single file can be transferred per irc and ftp log line.
34 lines
No EOL
807 B
Text
34 lines
No EOL
807 B
Text
@load ./main
|
|
@load ./entities
|
|
@load base/utils/conn-ids
|
|
@load base/frameworks/files
|
|
|
|
module SMTP;
|
|
|
|
export {
|
|
redef record Info += {
|
|
## An ordered vector of file unique IDs seen attached to
|
|
## the message.
|
|
fuids: vector of string &log &default=string_vec();
|
|
};
|
|
|
|
## Default file handle provider for SMTP.
|
|
global get_file_handle: function(c: connection, is_orig: bool): string;
|
|
}
|
|
|
|
function get_file_handle(c: connection, is_orig: bool): string
|
|
{
|
|
return cat(Analyzer::ANALYZER_SMTP, c$start_time, c$smtp$trans_depth,
|
|
c$smtp_state$mime_depth);
|
|
}
|
|
|
|
event bro_init() &priority=5
|
|
{
|
|
Files::register_protocol(Analyzer::ANALYZER_SMTP, SMTP::get_file_handle);
|
|
}
|
|
|
|
event file_over_new_connection(f: fa_file, c: connection) &priority=5
|
|
{
|
|
if ( c?$smtp )
|
|
c$smtp$fuids[|c$smtp$fuids|] = f$id;
|
|
} |