From 7eb36bb9a2f3d2fc8044e22ba2cc32da5c4cc933 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Thu, 23 Mar 2023 19:36:22 -0500 Subject: [PATCH] Added advice message for mixing of --show and --username --- src/user_options.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/user_options.c b/src/user_options.c index 4dd2dce39..10d106562 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1000,6 +1000,13 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) } } + if (user_options->show == true) && (user_options->username == true) + { + event_log_advice (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output."); + + return 0; + } + if (user_options->show == true || user_options->left == true) { if (user_options->remove == true)