mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
Merge remote-tracking branch 'origin/topic/jsiwek/krb-consts-defaults'
* origin/topic/jsiwek/krb-consts-defaults: Add default function for Kerberos constant-lookup-tables
This commit is contained in:
commit
df71d963c9
4 changed files with 13 additions and 4 deletions
9
CHANGES
9
CHANGES
|
@ -1,4 +1,13 @@
|
|||
|
||||
3.2.0-dev.402 | 2020-04-16 13:00:59 -0700
|
||||
|
||||
* Add default function for Kerberos constant-lookup-tables (Jon Siwek, Corelight)
|
||||
|
||||
* check for the existance of f?$conns in file_sniff event in policy/protocols/ssl/log-hostcerts-only.zeek
|
||||
(SG)
|
||||
|
||||
* Update README.md to fix the logo and one of the links (Tim Wojtulewicz, Corelight)
|
||||
|
||||
3.2.0-dev.396 | 2020-04-14 15:45:54 -0700
|
||||
|
||||
* A few minor cleanups in Dict (Tim Wojtulewicz, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
3.2.0-dev.396
|
||||
3.2.0-dev.402
|
||||
|
|
2
doc
2
doc
|
@ -1 +1 @@
|
|||
Subproject commit fe6fe81c1524bb2d41b1d1d2fa80177e1437e501
|
||||
Subproject commit 181747ff660c327ea0bc170d31a11fc180b88a51
|
|
@ -71,7 +71,7 @@ export {
|
|||
[74] = "KDC_ERR_REVOCATION_STATUS_UNAVAILABLE",
|
||||
[75] = "KDC_ERR_CLIENT_NAME_MISMATCH",
|
||||
[76] = "KDC_ERR_KDC_NAME_MISMATCH",
|
||||
};
|
||||
} &default=function(i: count): string { return fmt("unknown-%d", i); };
|
||||
|
||||
const cipher_name: table[count] of string = {
|
||||
[1] = "des-cbc-crc",
|
||||
|
@ -94,6 +94,6 @@ export {
|
|||
[25] = "camellia128-cts-cmac",
|
||||
[26] = "camellia256-cts-cmac",
|
||||
[65] = "subkey-keymaterial",
|
||||
};
|
||||
} &default=function(i: count): string { return fmt("unknown-%d", i); };
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue