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

10 lines
290 B
Text

@load base/frameworks/intel
@load ./where-locations
event dns_request(c: connection, msg: dns_msg, query: string, qtype: count, qclass: count)
{
Intel::seen([$indicator=query,
$indicator_type=Intel::DOMAIN,
$conn=c,
$where=DNS::IN_REQUEST]);
}