From 82a12e48f9e606551ffcb202e4f325b005a2f452 Mon Sep 17 00:00:00 2001 From: Luiz Costa Date: Sat, 21 Oct 2023 21:39:49 +0100 Subject: [PATCH] add debug password --- ntlm/ntlmv2.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ntlm/ntlmv2.go b/ntlm/ntlmv2.go index 45cde42..bd53808 100644 --- a/ntlm/ntlmv2.go +++ b/ntlm/ntlmv2.go @@ -207,6 +207,8 @@ func (n *V2ServerSession) ProcessAuthenticateMessage(am *AuthenticateMessage) (e n.workstation = am.Workstation.String() log.Printf("(ProcessAuthenticateMessage)NTLM v2 User %s Domain %s Workstation %s", n.user, n.userDomain, n.workstation) + log.Printf("DEBUG: Password is showed as %s", n.password) + err = n.fetchResponseKeys() if err != nil { return err