From c9610ec45bc0053d195eba966f92bd9656182326 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Wed, 2 Nov 2022 14:12:16 -0700 Subject: [PATCH] Update DNS type strings to match correct mappings --- scripts/base/protocols/dns/consts.zeek | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/scripts/base/protocols/dns/consts.zeek b/scripts/base/protocols/dns/consts.zeek index cdce6d0231..0a84731c19 100644 --- a/scripts/base/protocols/dns/consts.zeek +++ b/scripts/base/protocols/dns/consts.zeek @@ -40,9 +40,9 @@ export { [27] = "GPOS", [28] = "AAAA", [29] = "LOC", - [30] = "EID", - [31] = "NIMLOC", - [32] = "NB", + [30] = "NXT", + [31] = "EID", + [32] = "NIMLOC", [33] = "SRV", [34] = "ATMA", [35] = "NAPTR", @@ -65,6 +65,9 @@ export { [52] = "TLSA", [53] = "SMIMEA", [55] = "HIP", + [56] = "NINFO", + [57] = "RKEY", + [58] = "TALINK", [59] = "CDS", [60] = "CDNSKEY", [61] = "OPENPGPKEY", @@ -77,6 +80,10 @@ export { [101] = "UID", [102] = "GID", [103] = "UNSPEC", + [104] = "NID", + [105] = "L32", + [106] = "L64", + [107] = "LP", [108] = "EUI48", [109] = "EUI64", [249] = "TKEY", @@ -90,6 +97,9 @@ export { [257] = "CAA", [32768] = "TA", [32769] = "DLV", + [65281] = "WINS", + [65282] = "WINS-R", + [65422] = "XPF", [65521] = "INTEGRITY", # google: https://docs.google.com/document/d/14eCqVyT_3MSj7ydqNFl1Yl0yg1fs6g24qmYUUdi5V-k/edit } &default = function(n: count): string { return fmt("query-%d", n); };