zeek/scripts/policy/frameworks/files/extract-all-files.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

9 lines
141 B
Plaintext

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