mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
fixup! Add opcode/opcode_name to DNS log record
This commit is contained in:
parent
fb0fdf1dcf
commit
317375d649
2 changed files with 13 additions and 12 deletions
|
@ -195,10 +195,7 @@ export {
|
||||||
[6] = "ipv6hint",
|
[6] = "ipv6hint",
|
||||||
} &default = function(n: count): string { return fmt("key-%d", n); };
|
} &default = function(n: count): string { return fmt("key-%d", n); };
|
||||||
|
|
||||||
## Mapping of DNS operation type codes to human readable string
|
## Mapping of DNS operation type codes to human readable string representation.
|
||||||
## representation. The NetBIOS opcodes overlap the standard opcodes,
|
|
||||||
## hence putting the string versions at invalid values to make lookups
|
|
||||||
## possible.
|
|
||||||
const opcodes = {
|
const opcodes = {
|
||||||
[0] = "query",
|
[0] = "query",
|
||||||
[1] = "iquery",
|
[1] = "iquery",
|
||||||
|
@ -206,9 +203,16 @@ export {
|
||||||
[4] = "notify",
|
[4] = "notify",
|
||||||
[5] = "dynamic-update",
|
[5] = "dynamic-update",
|
||||||
[6] = "dso",
|
[6] = "dso",
|
||||||
[0xFFFF5] = "netbios-registration",
|
|
||||||
[0xFFFF6] = "netbios-release",
|
|
||||||
[0xFFFF7] = "netbios-wack",
|
|
||||||
[0xFFFF8] = "netbios-refresh",
|
|
||||||
} &default = function(n: count): string { return fmt("opcode-%d", n); };
|
} &default = function(n: count): string { return fmt("opcode-%d", n); };
|
||||||
|
|
||||||
|
## Mapping of DNS operation type codes to human readable string representation for
|
||||||
|
## NetBIOS Name Service (NBNS) queries. These codes are defined in
|
||||||
|
## https://datatracker.ietf.org/doc/html/rfc1002#section-4.2.1.1
|
||||||
|
const netbios_opcodes = {
|
||||||
|
[0] = "netbios-query",
|
||||||
|
[5] = "netbios-registration",
|
||||||
|
[6] = "netbios-release",
|
||||||
|
[7] = "netbios-wack",
|
||||||
|
[8] = "netbios-refresh",
|
||||||
|
} &default = function(n: count): string { return fmt("netbios-opcode-%d", n); };
|
||||||
}
|
}
|
||||||
|
|
|
@ -350,10 +350,7 @@ hook set_session(c: connection, msg: dns_msg, is_query: bool) &priority=5
|
||||||
|
|
||||||
c$dns$opcode = msg$opcode;
|
c$dns$opcode = msg$opcode;
|
||||||
if ( msg$is_netbios )
|
if ( msg$is_netbios )
|
||||||
if ( msg$opcode >= 5 )
|
c$dns$opcode_name = netbios_opcodes[msg$opcode];
|
||||||
c$dns$opcode_name = opcodes[msg$opcode + 0xFFFF];
|
|
||||||
else
|
|
||||||
c$dns$opcode_name = fmt("netbios-%s", opcodes[msg$opcode]);
|
|
||||||
else
|
else
|
||||||
c$dns$opcode_name = opcodes[msg$opcode];
|
c$dns$opcode_name = opcodes[msg$opcode];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue