mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
12 lines
322 B
Text
12 lines
322 B
Text
@load ./main
|
|
@load base/utils/conn-ids
|
|
@load base/frameworks/file-analysis/main
|
|
|
|
redef FileAnalysis::handle_callbacks += {
|
|
[ANALYZER_FTP_DATA] = function(c: connection, is_orig: bool): string
|
|
{
|
|
if ( is_orig ) return "";
|
|
return fmt("%s %s %s", ANALYZER_FTP_DATA, c$start_time,
|
|
id_string(c$id));
|
|
},
|
|
};
|