From a4bcde8aeddd4579e6950a716a8e9b598ce0792e Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sat, 28 Jun 2025 11:16:39 +0200 Subject: [PATCH] fix json format on hash_info_single_json --- src/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal.c b/src/terminal.c index f15a0f87d..4a9fc45cb 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -726,7 +726,7 @@ void hash_info_single_json (hashcat_ctx_t *hashcat_ctx, user_options_extra_t *us } } - printf ("\"password_type\": %s, ", t_pw_desc); + printf ("\"password_type\": \"%s\", ", t_pw_desc); printf ("\"password_len_min\": %u, ", t_pw_min); printf ("\"password_len_max\": %u, ", t_pw_max);