zeek/scripts/policy/frameworks/files/hash-all-files.bro
2015-09-11 13:01:43 +02:00

9 lines
197 B
Text

##! Perform MD5 and SHA1 hashing on all files.
@load base/files/hash
event file_new(f: fa_file)
{
Files::add_analyzer(f, Files::ANALYZER_MD5);
Files::add_analyzer(f, Files::ANALYZER_SHA1);
}