mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Make enc_part value from kerberos response available to scripts
This commit is contained in:
parent
fdf887ce3b
commit
135e2f9c67
6 changed files with 142 additions and 0 deletions
|
@ -5310,6 +5310,15 @@ export {
|
|||
|
||||
type KRB::Type_Value_Vector: vector of KRB::Type_Value;
|
||||
|
||||
type KRB::Encrypted_Data: record {
|
||||
## The key version number
|
||||
kvno : count &optional;
|
||||
## The cipher the data was encrypted with
|
||||
cipher : count;
|
||||
## The encrypted data
|
||||
ciphertext : string;
|
||||
};
|
||||
|
||||
## A Kerberos host address See :rfc:`4120`.
|
||||
type KRB::Host_Address: record {
|
||||
## IPv4 or IPv6 address
|
||||
|
@ -5434,6 +5443,8 @@ export {
|
|||
|
||||
## The ticket that was issued
|
||||
ticket : KRB::Ticket;
|
||||
## The encrypted session key for the client
|
||||
enc_part : KRB::Encrypted_Data;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue