Merge pull request #278 from philsmd/master

fixed problem with -m 5600 = NetNTLMv2 parser
This commit is contained in:
Jens Steube 2016-03-22 09:10:45 +01:00
commit 3f694cf960
2 changed files with 5 additions and 1 deletions

View File

@ -171,6 +171,10 @@ Type.: Bug
File.: Host
Desc.: Fixed some checks in the parser of -m 5500 = NetNTLMv1
Type.: Bug
File.: Host
Desc.: Fixed some checks in the parser of -m 5600 = NetNTLMv2
* changes v2.00 -> v2.01:
Type.: Bug

View File

@ -11031,7 +11031,7 @@ int netntlmv2_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf)
char *hash_pos = strchr (srvchall_pos, ':');
if (srvchall_pos == NULL) return (PARSER_SEPARATOR_UNMATCHED);
if (hash_pos == NULL) return (PARSER_SEPARATOR_UNMATCHED);
uint srvchall_len = hash_pos - srvchall_pos;