1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

Merge pull request #2018 from Chick3nman/master

Add extra warning when using --force
This commit is contained in:
Jens Steube 2019-05-14 11:58:03 +02:00 committed by GitHub
commit f2b1dfea31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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, "%s (%s) starting...", PROGNAME, version_tag);
event_log_info (hashcat_ctx, NULL); 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) void goodbye_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const time_t proc_stop)