From 252e7614da31c297e835bc80d3e976192c178604 Mon Sep 17 00:00:00 2001 From: jsteube Date: Tue, 14 Nov 2023 07:05:20 +0000 Subject: [PATCH] Add a warning about delayed output in case --dynamic-x is used in combination with --show --- src/user_options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user_options.c b/src/user_options.c index 1ab73e1b6..b1ed588f4 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1052,9 +1052,9 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) } } - if ((user_options->show == true) && (user_options->username == true)) + if ((user_options->show == true) && ((user_options->username == true) || (user_options->dynamic_x == true))) { - event_log_error (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output."); + event_log_error (hashcat_ctx, "Mixing --show with --username or --dynamic-x can cause exponential delay in output."); return 0; }