Merge pull request #1304 from roycewilliams/master

visual indicator of active options when benchmarking
pull/1340/head
Jens Steube 7 years ago committed by GitHub
commit e42d8c9247

@ -6,7 +6,7 @@
- Added support to crack passwords and salts up to length 256
- Added option --optimized-kernel-enable to use faster kernels but limit the maximum supported password- and salt-length
- Added self-test functionality for OpenCL kernels on startup
- Added self-test functionality to detect broken OpenCL runtimes on startup
- Added option --self-test-disable to disable self-test functionality on startup
- Added option --wordlist-autohex-disable to disable the automatical conversion of $HEX[] words from the word list

@ -38,6 +38,14 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag)
if (user_options->machine_readable == false)
{
event_log_info (hashcat_ctx, "%s (%s) starting in benchmark mode...", PROGNAME, version_tag);
if (user_options->optimized_kernel_enable == false)
{
event_log_info (hashcat_ctx, "Active options: -w %u", user_options->workload_profile);
}
else
{
event_log_info (hashcat_ctx, "Active options: -O, -w %u", user_options->workload_profile);
}
event_log_info (hashcat_ctx, NULL);
if (user_options->workload_profile_chgd == false)
@ -52,6 +60,14 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag)
else
{
event_log_info (hashcat_ctx, "# %s (%s)", PROGNAME, version_tag);
if (user_options->optimized_kernel_enable == false)
{
event_log_info (hashcat_ctx, "# Active options: -w %u", user_options->workload_profile);
}
else
{
event_log_info (hashcat_ctx, "# Active options: -O, -w %u", user_options->workload_profile);
}
}
}
else if (user_options->restore == true)

Loading…
Cancel
Save