From d84127386ae3991d7cdd37cc699ccc231bc2ee27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Bolvansk=C3=BD?= Date: Sun, 27 Mar 2022 00:02:02 +0100 Subject: [PATCH] Emit final status also in 'status-json' mode --- src/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.c b/src/main.c index 7c77433a7..f3c640294 100644 --- a/src/main.c +++ b/src/main.c @@ -317,6 +317,10 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB { status_display (hashcat_ctx); } + else if (user_options->status_json == true) + { + status_display (hashcat_ctx); + } else { if (user_options->quiet == false)