Add a warning about delayed output in case --dynamic-x is used in combination with --show

This commit is contained in:
jsteube 2023-11-14 07:05:20 +00:00
parent 702306dfd5
commit 252e7614da
1 changed files with 2 additions and 2 deletions

View File

@ -1052,9 +1052,9 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
}
}
if ((user_options->show == true) && (user_options->username == true))
if ((user_options->show == true) && ((user_options->username == true) || (user_options->dynamic_x == true)))
{
event_log_error (hashcat_ctx, "Mixing --show with --username can cause exponential delay in output.");
event_log_error (hashcat_ctx, "Mixing --show with --username or --dynamic-x can cause exponential delay in output.");
return 0;
}