From 73637d43db373f351c071ffcb16aad95bdd25e3a Mon Sep 17 00:00:00 2001 From: Will Crozier Date: Thu, 10 Mar 2022 20:42:06 +0000 Subject: [PATCH] allow --stdout and --stdin-timeout-abort to be used together --- src/user_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user_options.c b/src/user_options.c index dec673c11..2cc7cf592 100644 --- a/src/user_options.c +++ b/src/user_options.c @@ -1372,7 +1372,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx) // --stdin-timeout-abort can only be used in stdin mode - if (user_options->hc_argc != 1) + if (user_options->hc_argc > 1) { event_log_error (hashcat_ctx, "Use of --stdin-timeout-abort is only allowed in stdin mode (pipe).");