mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
Merge remote-tracking branch 'origin/topic/johanna/gh-4061'
* origin/topic/johanna/gh-4061: Update BiF-tracking, add is_event_handled Address review comments and small updates for DNS warnings Raise warnings when for DNS events that are not raised due to dns_skip_all_addl
This commit is contained in:
commit
b2222e97a1
17 changed files with 158 additions and 6 deletions
|
@ -3,6 +3,6 @@
|
|||
@load policy/protocols/dns/auth-addl
|
||||
|
||||
event dns_EDNS_cookie(c: connection, msg: dns_msg, opt: dns_edns_cookie)
|
||||
{
|
||||
print opt;
|
||||
}
|
||||
{
|
||||
print opt;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
# Check that warnings are for events that will not be raised
|
||||
|
||||
# @TEST-EXEC: zeek -b %INPUT
|
||||
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
||||
|
||||
@load base/protocols/dns
|
||||
|
||||
event dns_EDNS_addl(c: connection, msg: dns_msg, ans: dns_edns_additional)
|
||||
{
|
||||
print "";
|
||||
}
|
||||
|
||||
event dns_EDNS_ecs(c: connection, msg: dns_msg, opt: dns_edns_ecs)
|
||||
{
|
||||
print "";
|
||||
}
|
||||
|
||||
event dns_EDNS_tcp_keepalive(c: connection, msg: dns_msg, opt: dns_edns_tcp_keepalive)
|
||||
{
|
||||
print "";
|
||||
}
|
||||
|
||||
event dns_EDNS_cookie(c: connection, msg: dns_msg, opt: dns_edns_cookie)
|
||||
{
|
||||
print "";
|
||||
}
|
||||
|
||||
event dns_TKEY(c: connection, msg: dns_msg, ans: dns_tkey)
|
||||
{
|
||||
print "";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue