First working version

This commit is contained in:
Bolke de Bruin
2020-06-30 09:40:53 +02:00
commit 62afbe6146
6 changed files with 696 additions and 0 deletions

13
ntlm.go Normal file
View File

@@ -0,0 +1,13 @@
package main
type NtlmChallenge struct {
Signature [8]byte
MsgType uint32
TargetNameLen uint16
TargetNameMaxLen uint16
TargetNameBufferOffset uint32
NegotiateFlags [4]byte
ServerChallenge [8]byte
Reserved [8]byte
TargetInfoBytes [8]byte
}