From 935e4a6fa0bd7acd6a6d2fffa4cea65d6585dcac Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 5 Oct 2016 14:33:36 +0200 Subject: [PATCH] Fix loading of NetNTLMv1 + SSP hash --- src/interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface.c b/src/interface.c index fe6cbce82..552731706 100644 --- a/src/interface.c +++ b/src/interface.c @@ -3529,8 +3529,8 @@ int netntlmv1_parse_hash (char *input_buf, u32 input_len, hash_t *hash_buf, cons { u32 w[16] = { 0 }; - w[ 0] = netntlm->chall_buf[6]; - w[ 1] = netntlm->chall_buf[7]; + w[ 0] = salt->salt_buf[0]; + w[ 1] = salt->salt_buf[1]; w[ 2] = netntlm->chall_buf[0]; w[ 3] = netntlm->chall_buf[1]; w[ 4] = 0x80;