Added NTLM challenge and response

This commit is contained in:
nadavkluger 2022-11-17 11:57:38 +02:00
parent 53394bca0c
commit dd849bc339
3 changed files with 12 additions and 3 deletions

View file

@ -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;
};
}