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)