1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

Add module potfile disable warning message to startup, test formatting

This commit is contained in:
Chick3nman 2022-02-15 12:29:43 -06:00
parent cae2562c09
commit 58c90985f0

View File

@ -522,6 +522,14 @@ static void main_outerloop_mainscreen (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx,
event_log_advice (hashcat_ctx, "will add ALL plains/collisions found, even duplicates, to the potfile.");
event_log_advice (hashcat_ctx, NULL);
}
if (hashconfig->potfile_disable == true)
{
event_log_advice (hashcat_ctx, "ATTENTION! Potfile storage is disabled for this hash mode.");
event_log_advice (hashcat_ctx, "Passwords cracked during this session will NOT be stored to the potfile.");
event_log_advice (hashcat_ctx, "Consider using -o to save cracked passwords.");
event_log_advice (hashcat_ctx, NULL);
}
/**
* Watchdog and Temperature balance
*/