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