From 2a739a86ae8a39f063070b9b81047c634f65edbd Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Wed, 13 Mar 2019 11:15:55 -0800 Subject: [PATCH] rewrap --keep-guessing language for console width --- src/main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index 5f5f5fea8..19f03aed0 100644 --- a/src/main.c +++ b/src/main.c @@ -523,9 +523,10 @@ static void main_outerloop_mainscreen (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, 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, "ATTENTION! --keep-guessing mode is enabled."); + event_log_advice (hashcat_ctx, "This tells hashcat to continue attacking all target hashes until exhaustion."); + event_log_advice (hashcat_ctx, "hashcat will NOT check for or remove targets present in the potfile, and"); + event_log_advice (hashcat_ctx, "will add ALL plains/collisions found, even duplicates, to the potfile."); event_log_advice (hashcat_ctx, NULL); } /**