zeek/scripts/policy/frameworks/files/extract-all-files.zeek
2019-04-11 21:12:40 -05:00

8 lines
141 B
Text

##! Extract all files to disk.
@load base/files/extract
event file_new(f: fa_file)
{
Files::add_analyzer(f, Files::ANALYZER_EXTRACT);
}