mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00

- Intel importing format has changed (refer to docs). - All string matching is now case insensitive. - SMTP intel script has been updated to extract email addresses correctly. - Small fix sneaking into the smtp base script to actually extract individual email addresses in the To: field correctly.
10 lines
290 B
Text
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]);
|
|
}
|