From b1016aee6219f8f5087aa811a475db9c8a38a0f7 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Sun, 17 Nov 2019 15:12:27 -0600 Subject: [PATCH] Update Terminal.c Increase verbosity for `--force` usage --- src/terminal.c | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/src/terminal.c b/src/terminal.c index 0ed13723f..dbe11c693 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1138,17 +1138,36 @@ void status_display (hashcat_ctx_t *hashcat_ctx) event_log_info (hashcat_ctx, "Hash.Target......: %s", hashcat_status->hash_target); - - event_log_info (hashcat_ctx, + + if (user_options->force == true) + { + event_log_info (hashcat_ctx, + "Time.Started.....: %s, (%s)", + hashcat_status->time_started_absolute, + hashcat_status->time_started_relative); + } + else + { + event_log_info (hashcat_ctx, "Time.Started.....: %s (%s)", hashcat_status->time_started_absolute, hashcat_status->time_started_relative); - - event_log_info (hashcat_ctx, + } + if (user_options->force == true) + { + event_log_info (hashcat_ctx, + "Time.Estimated...: %s, (%s)", + hashcat_status->time_estimated_absolute, + hashcat_status->time_estimated_relative); + } + else + { + event_log_info (hashcat_ctx, "Time.Estimated...: %s (%s)", hashcat_status->time_estimated_absolute, hashcat_status->time_estimated_relative); - + } + switch (hashcat_status->guess_mode) { case GUESS_MODE_STRAIGHT_FILE: