mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
fixed problem with -m 5600 = NetNTLMv2 parser
This commit is contained in:
parent
7d6599c981
commit
9a135de1c1
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user