Skip to content

Instantly share code, notes, and snippets.

@trietptm
Forked from danzajork/extract-files.bro
Created December 2, 2019 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trietptm/2c84409ead68034c2e999e7b22fb0c55 to your computer and use it in GitHub Desktop.
Save trietptm/2c84409ead68034c2e999e7b22fb0c55 to your computer and use it in GitHub Desktop.
bro script to extract all files to disk
##! Extract all files to disk.
@load base/files/extract
event file_new(f: fa_file)
{
Files::add_analyzer(f, Files::ANALYZER_EXTRACT);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment