1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-10 15:51:10 +00:00

Merge pull request #3178 from Chick3nman/master

Add logic to advice message
This commit is contained in:
Jens Steube 2022-02-14 20:38:52 +01:00 committed by GitHub
commit f3a8b3c2c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -746,10 +746,16 @@ static void main_monitor_performance_hint (MAYBE_UNUSED hashcat_ctx_t *hashcat_c
if (user_options->slow_candidates == false) if (user_options->slow_candidates == false)
{ {
event_log_advice (hashcat_ctx, "* Append -S to the commandline."); if ((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK))
event_log_advice (hashcat_ctx, " This has a drastic speed impact but can be better for specific attacks."); {
event_log_advice (hashcat_ctx, " Typical scenarios are a small wordlist but a large ruleset."); if ((user_options->attack_mode != ATTACK_MODE_HYBRID1) && (user_options->attack_mode != ATTACK_MODE_HYBRID2) && (user_options->attack_mode != ATTACK_MODE_ASSOCIATION))
event_log_advice (hashcat_ctx, NULL); {
event_log_advice (hashcat_ctx, "* Append -S to the commandline.");
event_log_advice (hashcat_ctx, " This has a drastic speed impact but can be better for specific attacks.");
event_log_advice (hashcat_ctx, " Typical scenarios are a small wordlist but a large ruleset.");
event_log_advice (hashcat_ctx, NULL);
}
}
} }
event_log_advice (hashcat_ctx, "* Update your backend API runtime / driver the right way:"); event_log_advice (hashcat_ctx, "* Update your backend API runtime / driver the right way:");