mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
8 lines
141 B
Text
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);
|
|
}
|