1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Ensure start-point is set correctly between every run

Double check to make sure the bypass_digests_done variable is set correctly before each attack, as issues may arise if the user [b]ypasses manually or an attack runs out between `delay` timeframes
This commit is contained in:
PenguinKeeper7 2023-10-06 09:57:26 +01:00
parent d3aa62bd15
commit 2f8c732dc6

View File

@ -295,12 +295,13 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
}
/**
* Set time for --bypass-delay
* Set time for --bypass-delay and start point for --bypass-threshold
*/
if (user_options->bypass_delay_chgd == true)
{
time (&status_ctx->timer_bypass_start);
status_ctx->bypass_digests_done = hashcat_ctx->hashes->digests_done;
}
/**