1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 15:08:37 +00:00

clarify Kernel.Feature: password, min-max bytes

This commit is contained in:
Royce Williams 2025-07-07 10:44:59 -08:00
parent e6ed375658
commit 17e29f298a

View File

@ -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);
}