1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 15:08:37 +00:00

Merge pull request #4312 from Chick3nman/skip-limit-message

Update error when using --skip/--limit in an invalid attack config
This commit is contained in:
hashcat-bot 2025-07-11 19:53:23 +02:00 committed by GitHub
commit 90291d028e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -795,7 +795,7 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx)
{ {
if ((mask_ctx->masks_cnt > 1) || (straight_ctx->dicts_cnt > 1)) if ((mask_ctx->masks_cnt > 1) || (straight_ctx->dicts_cnt > 1))
{ {
event_log_error (hashcat_ctx, "Use of --skip/--limit is not supported with --increment, mask files, or --stdout."); event_log_error (hashcat_ctx, "Use of --skip/--limit is not supported with --increment, mask files, multiple dictionaries, or --stdout.");
return -1; return -1;
} }