diff --git a/src/main.c b/src/main.c index 7264ac173..2e45fc441 100644 --- a/src/main.c +++ b/src/main.c @@ -748,10 +748,13 @@ static void main_monitor_performance_hint (MAYBE_UNUSED hashcat_ctx_t *hashcat_c { if ((user_options_extra->wordlist_mode == WL_MODE_FILE) || (user_options_extra->wordlist_mode == WL_MODE_MASK)) { - 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); + if ((user_options->attack_mode != ATTACK_MODE_HYBRID1) && (user_options->attack_mode != ATTACK_MODE_HYBRID2)) + { + 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); + } } }