mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Added NTLM challenge and response
This commit is contained in:
parent
53394bca0c
commit
dd849bc339
3 changed files with 12 additions and 3 deletions
|
@ -2871,6 +2871,8 @@ export {
|
|||
type NTLM::Challenge: record {
|
||||
## The negotiate flags
|
||||
flags : NTLM::NegotiateFlags;
|
||||
## A 64-bit value that contains the NTLM challenge.
|
||||
challenge : count;
|
||||
## The server authentication realm. If the server is
|
||||
## domain-joined, the name of the domain. Otherwise
|
||||
## the server name. See flags.target_type_domain
|
||||
|
@ -2895,6 +2897,8 @@ export {
|
|||
session_key : string &optional;
|
||||
## The Windows version information, if supplied
|
||||
version : NTLM::Version &optional;
|
||||
## The client's response for the challenge
|
||||
response : string &optional;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue