From f1c7b60d6ab8e261ed14396538d27e1c6e481ae0 Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 30 Mar 2017 09:47:52 +0200 Subject: [PATCH] Status View: Add rejected counter to machine readable output Fixes https://github.com/hashcat/hashcat/issues/1213 --- src/terminal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/terminal.c b/src/terminal.c index 4b7745756..9b0b68ee9 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -686,6 +686,8 @@ void status_display_machine_readable (hashcat_ctx_t *hashcat_ctx) } } + printf ("REJECTED\t%" PRIu64 "\t", hashcat_status->progress_rejected); + fwrite (EOL, strlen (EOL), 1, stdout); fflush (stdout);