mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
Fixed use of option --keyspace in combination with -m 2500 (WPA)
Fixes https://github.com/hashcat/hashcat/issues/971
This commit is contained in:
parent
5c5f8da9b1
commit
dc843acf63
@ -24,6 +24,7 @@
|
||||
|
||||
- Fixed truncation of password after position 32 with the combinator attack
|
||||
- Fixed DEScrypt cracking in BF mode in case the hashlist contains more than 16 times the same salt
|
||||
- Fixed use of option --keyspace in combination with -m 2500 (WPA)
|
||||
|
||||
* changes v3.20 -> v3.30:
|
||||
|
||||
|
@ -457,7 +457,7 @@ int hashes_init_stage1 (hashcat_ctx_t *hashcat_ctx)
|
||||
|
||||
u32 hashes_avail = 0;
|
||||
|
||||
if ((user_options->benchmark == false) && (user_options->stdout_flag == false))
|
||||
if ((user_options->benchmark == false) && (user_options->stdout_flag == false) && (user_options->keyspace == false))
|
||||
{
|
||||
hc_stat_t f;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user