Merge remote-tracking branch 'nadav/topic/nadavk/ntlm'

* nadav/topic/nadavk/ntlm:
  Added NTLM challenge and response
This commit is contained in:
Tim Wojtulewicz 2022-11-21 09:09:09 -07:00
commit 26030f4a57
5 changed files with 17 additions and 4 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;
};
}