From 0fb6e68c7604d4f9c78b6c20251301a7af61f7d2 Mon Sep 17 00:00:00 2001 From: PenguinKeeper7 Date: Mon, 4 Mar 2024 23:05:54 +0000 Subject: [PATCH] No longer require -i with --increment-inverse --- src/user_options.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/user_options.c b/src/user_options.c index c74ac5b30..c463e63ce 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -868,13 +868,6 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) return -1; } - if ((user_options->increment == false) && (user_options->increment_inverse == true)) - { - event_log_error (hashcat_ctx, "Increment-inverse is only supported combined with -i/--increment."); - - return -1; - } - if (user_options->increment_min > user_options->increment_max) { event_log_error (hashcat_ctx, "Invalid --increment-min value specified - must be >= --increment-max.");