zeek/scripts/policy/frameworks/intel/seen/file-names.zeek
2019-04-11 21:12:40 -05:00

11 lines
No EOL
274 B
Text

@load base/frameworks/intel
@load ./where-locations
event file_new(f: fa_file)
{
if ( f?$info && f$info?$filename )
Intel::seen([$indicator=f$info$filename,
$indicator_type=Intel::FILE_NAME,
$f=f,
$where=Files::IN_NAME]);
}