mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
9 lines
197 B
Text
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);
|
|
}
|