From e10c41c831e330d594c70f1507f476d2cabd4ab0 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 15 Oct 2016 18:27:58 +0200 Subject: [PATCH] Do not show final status in case -I is used --- src/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.c b/src/main.c index f7c06e5b9..74cac2222 100644 --- a/src/main.c +++ b/src/main.c @@ -255,6 +255,10 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB const user_options_t *user_options = hashcat_ctx->user_options; const user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra; + if (user_options->keyspace == true) return; + if (user_options->opencl_info == true) return; + if (user_options->stdout_flag == true) return; + // if we had a prompt, clear it if ((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK))