From fb9ea5d642f6eebe88229cec872a2b70ba0703e8 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Fri, 11 Jul 2025 05:52:38 -0500 Subject: [PATCH] Update error when using --skip/--limit in an invalid attack configuration --- src/hashcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hashcat.c b/src/hashcat.c index ab4d3139e..1d4f8a054 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -795,7 +795,7 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx) { 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; }