From 58c90985f090b0ef172692cdd5adc60d87bfd992 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Tue, 15 Feb 2022 12:29:43 -0600 Subject: [PATCH] Add module potfile disable warning message to startup, test formatting --- src/main.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.c b/src/main.c index 4e976b2d2..2d0231799 100644 --- a/src/main.c +++ b/src/main.c @@ -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 */