mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-21 15:48:08 +00:00
Add a warning about delayed output in case --dynamic-x is used in combination with --show
This commit is contained in:
parent
702306dfd5
commit
252e7614da
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user