From 17e29f298a96c35e151f17876ee9db9c7e52f6f0 Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Mon, 7 Jul 2025 10:44:59 -0800 Subject: [PATCH] clarify Kernel.Feature: password, min-max bytes --- src/terminal.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/terminal.c b/src/terminal.c index 258d02f2e..470770609 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -2936,13 +2936,15 @@ void status_display (hashcat_ctx_t *hashcat_ctx) if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) { event_log_info (hashcat_ctx, - "Kernel.Feature...: Optimized Kernel (max length: %u)", + "Kernel.Feature...: Optimized Kernel (password length %u-%u bytes)", + hashconfig->pw_min, hashconfig->pw_max); } else { event_log_info (hashcat_ctx, - "Kernel.Feature...: Pure Kernel (max length: %u)", + "Kernel.Feature...: Pure Kernel (password length %u-%u bytes)", + hashconfig->pw_min, hashconfig->pw_max); }