mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Merge remote-tracking branch 'philipp-tg/asrep_enc_part'
* philipp-tg/asrep_enc_part: Make enc_part value from kerberos response available to scripts
This commit is contained in:
commit
c8eab363fb
8 changed files with 147 additions and 1 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