mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
10 lines
278 B
Text
10 lines
278 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([$str=query,
|
|
$str_type=Intel::DOMAIN,
|
|
$conn=c,
|
|
$where=DNS::IN_REQUEST]);
|
|
}
|