Fixed potfile loading to accept blank passwords

pull/970/head
jsteube 7 years ago
parent dca74af23f
commit e1b5de12d5

@ -22,12 +22,13 @@
- Fixed buffer overflow in status screen display in case of long non-utf8 string
- Fixed custom char parsing code in maskfiles in --increment mode: Custom charset wasn't used
- Fixed display screen to show input queue when using custom charset or rules
- Fixed double fclose() using AMDGPU-Pro on sysfs compatible platform: Leading to segfault
- Fixed hex output of plaintext in case --outfile-format 4, 5, 6 or 7 was used
- Fixed infinite loop when using --loopback in case all hashes have been cracked
- Fixed kernel loops in --increment mode leading to slower performance
- Fixed mask length check in hybrid attack-modes: Do not include hash-mode dependant mask length checks
- Fixed display screen to show input queue when using custom charset or rules
- Fixed potfile loading to accept blank passwords
##
## Technical

@ -367,7 +367,8 @@ int potfile_remove_parse (hashcat_ctx_t *hashcat_ctx)
if (line_hash_len == 0) continue;
if (line_pw_len == 0) continue;
// we should allow length 0 passwords (detected by weak hash check)
//if (line_pw_len == 0) continue;
if (hashconfig->is_salted)
{

Loading…
Cancel
Save