mirror of
https://github.com/hashcat/hashcat
synced 2025-04-20 21:55:56 +02:00
Fixed potfile loading to accept blank passwords
This commit is contained in:
parent
dca74af23f
commit
e1b5de12d5
@ -22,12 +22,13 @@
|
|||||||
|
|
||||||
- Fixed buffer overflow in status screen display in case of long non-utf8 string
|
- 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 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 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 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 infinite loop when using --loopback in case all hashes have been cracked
|
||||||
- Fixed kernel loops in --increment mode leading to slower performance
|
- 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 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
|
## Technical
|
||||||
|
@ -367,7 +367,8 @@ int potfile_remove_parse (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
if (line_hash_len == 0) continue;
|
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)
|
if (hashconfig->is_salted)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user