From f6afc8696cf1ed544243fa6f5b19bdbabc1776cf Mon Sep 17 00:00:00 2001 From: Royce Williams Date: Fri, 27 Jun 2025 14:47:22 -0800 Subject: [PATCH] show max length in Kernel.Feature status --- src/terminal.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/terminal.c b/src/terminal.c index 948b4795d..9cd362a9d 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -2291,11 +2291,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"); + event_log_info (hashcat_ctx, + "Kernel.Feature...: Optimized Kernel (max length: %s)", + hashconfig->pw_max); } else { - event_log_info (hashcat_ctx, "Kernel.Feature...: Pure Kernel"); + event_log_info (hashcat_ctx, + "Kernel.Feature...: Pure Kernel (max length: %s)", + hashconfig->pw_max); } switch (hashcat_status->guess_mode)