1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-24 23:48:19 +00:00

show max length in Kernel.Feature status

This commit is contained in:
Royce Williams 2025-06-27 14:47:22 -08:00
parent d5050d1f32
commit f6afc8696c

View File

@ -2291,11 +2291,15 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) 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 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) switch (hashcat_status->guess_mode)