mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
15 lines
264 B
Text
15 lines
264 B
Text
#
|
|
# @TEST-EXEC: zeek -b %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event zeek_init()
|
|
{
|
|
local result = get_plugin_components("ANALYZER");
|
|
|
|
for (i in result)
|
|
{
|
|
local rec = result[i];
|
|
if ( rec$name == "FTP" )
|
|
print rec;
|
|
}
|
|
}
|