From 717b82c4060ffbd04fb9a3bc29f5b4644f43cc6a Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Fri, 10 May 2019 06:43:50 -0500 Subject: [PATCH] Add extra warning for --force Warn users not to report issues when using --force in their command. --- src/terminal.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/terminal.c b/src/terminal.c index 94b5b223a..e75c609f4 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -73,6 +73,13 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag) event_log_info (hashcat_ctx, "%s (%s) starting...", PROGNAME, version_tag); event_log_info (hashcat_ctx, NULL); } + + if (user_options->force == true) + { + event_log_warning (hashcat_ctx, "You have enabled --force to bypass dangerous warnings and errors!"); + event_log_warning (hashcat_ctx, "This can hide serious problems and should only be done when debugging."); + event_log_warning (hashcat_ctx, "Do not report hashcat issues encountered when using --force."); + } } void goodbye_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const time_t proc_stop)