From: philsmd Date: Mon, 21 Mar 2016 17:51:21 +0000 (+0100) Subject: fixed problem with -m 5600 = NetNTLMv2 parser X-Git-Tag: v3.00-beta~165^2 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=9a135de1c14d1dedabf38693d92ba734b64c0c14;p=hashcat.git fixed problem with -m 5600 = NetNTLMv2 parser --- diff --git a/docs/changes.txt b/docs/changes.txt index f691d28..a7bdc9d 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -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 diff --git a/src/shared.c b/src/shared.c index 3679ae7..f1002b7 100644 --- a/src/shared.c +++ b/src/shared.c @@ -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;