From 53e891715f0c9f091a307a82ad760ced4ae68653 Mon Sep 17 00:00:00 2001 From: PenguinKeeper7 Date: Fri, 18 Jul 2025 16:11:35 +0100 Subject: [PATCH] Tell the user how many base words Hashcat wants --- src/backend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend.c b/src/backend.c index 9fa40c8b5..8f263a46b 100644 --- a/src/backend.c +++ b/src/backend.c @@ -9242,6 +9242,7 @@ void backend_ctx_devices_update_power (hashcat_ctx_t *hashcat_ctx) event_log_advice (hashcat_ctx, "The wordlist or mask that you are using is too small."); event_log_advice (hashcat_ctx, "This means that hashcat cannot use the full parallel power of your device(s)."); + event_log_advice (hashcat_ctx, "Hashcat is expecting at least %" PRIu64 " base words but only got %.1f%% of that.", backend_ctx->kernel_power_all, (100.f * status_ctx->words_base) / backend_ctx->kernel_power_all); event_log_advice (hashcat_ctx, "Unless you supply more work, your cracking speed will drop."); event_log_advice (hashcat_ctx, "For tips on supplying more work, see: https://hashcat.net/faq/morework"); event_log_advice (hashcat_ctx, NULL);