diff --git a/CHANGES b/CHANGES index aa9d435da5..800a3e817b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +4.1.0-dev.889 | 2021-07-06 08:48:50 -0700 + + * Add a few DNS query types. (Johanna Amann, Corelight) + 4.1.0-dev.887 | 2021-07-06 08:47:22 +0200 * Add some more items to NEWS. (Robin Sommer, Corelight) diff --git a/VERSION b/VERSION index 50aaf0ee22..d88a43bf11 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.0-dev.887 +4.1.0-dev.889 diff --git a/scripts/base/protocols/dns/consts.zeek b/scripts/base/protocols/dns/consts.zeek index 2d39eefcb6..a1e0f53a0b 100644 --- a/scripts/base/protocols/dns/consts.zeek +++ b/scripts/base/protocols/dns/consts.zeek @@ -63,15 +63,22 @@ export { [50] = "NSEC3", [51] = "NSEC3PARAM", [52] = "TLSA", + [53] = "SMIMEA", [55] = "HIP", [59] = "CDS", [60] = "CDNSKEY", [61] = "OPENPGPKEY", + [62] = "CSYNC", + [63] = "ZONEMD", + [64] = "SVCB", + [65] = "HTTPS", [99] = "SPF", [100] = "UINFO", [101] = "UID", [102] = "GID", [103] = "UNSPEC", + [108] = "EUI48", + [109] = "EUI64", [249] = "TKEY", [250] = "TSIG", [251] = "IXFR", @@ -83,6 +90,7 @@ export { [257] = "CAA", [32768] = "TA", [32769] = "DLV", + [65521] = "INTEGRITY", # google: https://docs.google.com/document/d/14eCqVyT_3MSj7ydqNFl1Yl0yg1fs6g24qmYUUdi5V-k/edit } &default = function(n: count): string { return fmt("query-%d", n); }; ## Errors used for non-TSIG/EDNS types.