From cb7848f956c783eb763dc19b2b0c7af43c9a0a98 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sat, 14 Jun 2025 22:36:14 +0200 Subject: [PATCH] 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 --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index b1c1bc32b..3c9c7ed2d 100644 --- a/src/interface.c +++ b/src/interface.c @@ -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; }