mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-17 01:52:06 +00:00
Roll back status view progress percentage in case -s was used
This commit is contained in:
parent
72071fba87
commit
20057d8516
@ -23,7 +23,6 @@
|
|||||||
- Fixed a typo that resulted in the minimum password length not being correctly initialized
|
- Fixed a typo that resulted in the minimum password length not being correctly initialized
|
||||||
- Fixed a problem with parsing and displaying -m 7000 = Fortigate (FortiOS) hashes
|
- Fixed a problem with parsing and displaying -m 7000 = Fortigate (FortiOS) hashes
|
||||||
- Fixed --remove was not applied in case all hashes have been cracked by help of potfile or weak-hash check
|
- Fixed --remove was not applied in case all hashes have been cracked by help of potfile or weak-hash check
|
||||||
- Fixed status view progress percentage in case -s was used
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## Technical
|
## Technical
|
||||||
|
@ -104,6 +104,8 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
|
|||||||
{
|
{
|
||||||
status_ctx->words_off = user_options->skip;
|
status_ctx->words_off = user_options->skip;
|
||||||
status_ctx->words_cur = status_ctx->words_off;
|
status_ctx->words_cur = status_ctx->words_off;
|
||||||
|
|
||||||
|
user_options->skip = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
opencl_session_reset (hashcat_ctx);
|
opencl_session_reset (hashcat_ctx);
|
||||||
@ -318,11 +320,6 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// in case the user specified a --skip parameter we can use it only for the first inner loop
|
|
||||||
// we need to reset this
|
|
||||||
|
|
||||||
user_options->skip = 0;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user