From c923515ad3742924dca0da878fd7b4e24b0b22cb Mon Sep 17 00:00:00 2001 From: justpretending Date: Tue, 24 Jan 2023 17:01:43 +0700 Subject: [PATCH] Add the separator after original-word in --debug-mode=5 (fixes #3587) --- src/debugfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugfile.c b/src/debugfile.c index 3b6c361d1..21cd4e17f 100644 --- a/src/debugfile.c +++ b/src/debugfile.c @@ -73,7 +73,7 @@ void debugfile_write_append (hashcat_ctx_t *hashcat_ctx, const u8 *rule_buf, con { debugfile_format_plain (hashcat_ctx, orig_plain_ptr, orig_plain_len); - if ((debug_mode == 3) || (debug_mode == 4)) hc_fputc (':', &debugfile_ctx->fp); + if ((debug_mode == 3) || (debug_mode == 4) || (debug_mode == 5)) hc_fputc (':', &debugfile_ctx->fp); } hc_fwrite ((void *) rule_buf, rule_len, 1, &debugfile_ctx->fp);