From e8b81657d77dc12f99fd761abd6971ae3de5cf34 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Tue, 12 Mar 2019 13:32:31 -0500 Subject: [PATCH] Add warning message for --keep-guessing --- src/main.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index d189fdb65..73ead275b 100644 --- a/src/main.c +++ b/src/main.c @@ -519,7 +519,14 @@ static void main_outerloop_mainscreen (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, event_log_advice (hashcat_ctx, NULL); } } - + + if (user_options->keep_guessing == true) + { + event_log_advice (hashcat_ctx, "ATTENTION! Keep-guessing is enabled."); + event_log_advice (hashcat_ctx, "This tells Hashcat to continue guessing against all target hashes until attack exhaustion."); + event_log_advice (hashcat_ctx, "Hashcat will NOT check for or remove targets present in the potfile and will add ALL plains/collisions found, including duplicates, to the potfile."); + event_log_advice (hashcat_ctx, NULL); + } /** * Watchdog and Temperature balance */