1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-31 19:08:43 +00:00

Change the default benchmark mask from ?b?b?b?b?b?b?b to ?a?a?a?a?a?a?a to avoid inconsistencies when converting between UTF-8 and UTF-16

This commit is contained in:
Jens Steube 2025-06-14 22:36:14 +02:00
parent 53186f0a7f
commit cb7848f956

View File

@ -580,7 +580,7 @@ void hashconfig_destroy (hashcat_ctx_t *hashcat_ctx)
const char *default_benchmark_mask (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra)
{
const char *mask = "?b?b?b?b?b?b?b";
const char *mask = "?a?a?a?a?a?a?a";
return mask;
}