mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-04 05:42:35 +00:00
Performance Monitor: Add -S as a user suggestion to improve cracking performance in specific attack configurations
This commit is contained in:
parent
9028938998
commit
58ffef4580
@ -14,6 +14,7 @@
|
||||
##
|
||||
|
||||
- CUDA Backend: Do not warn about missing CUDA SDK installation if --stdout is used
|
||||
- Performance Monitor: Add -S as a user suggestion to improve cracking performance in specific attack configurations
|
||||
|
||||
##
|
||||
## Technical
|
||||
|
11
src/main.c
11
src/main.c
@ -710,6 +710,8 @@ static void main_monitor_performance_hint (MAYBE_UNUSED hashcat_ctx_t *hashcat_c
|
||||
event_log_advice (hashcat_ctx, "Cracking performance lower than expected?");
|
||||
event_log_advice (hashcat_ctx, NULL);
|
||||
|
||||
if (user_options->optimized_kernel_enable == false)
|
||||
{
|
||||
if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 0)
|
||||
{
|
||||
if (hashconfig->has_optimized_kernel == true)
|
||||
@ -719,6 +721,7 @@ static void main_monitor_performance_hint (MAYBE_UNUSED hashcat_ctx_t *hashcat_c
|
||||
event_log_advice (hashcat_ctx, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (user_options->workload_profile < 3)
|
||||
{
|
||||
@ -727,6 +730,14 @@ static void main_monitor_performance_hint (MAYBE_UNUSED hashcat_ctx_t *hashcat_c
|
||||
event_log_advice (hashcat_ctx, NULL);
|
||||
}
|
||||
|
||||
if (user_options->slow_candidates == false)
|
||||
{
|
||||
event_log_advice (hashcat_ctx, "* Append -S to the commandline.");
|
||||
event_log_advice (hashcat_ctx, " This has a drastic effect but only for context specific attack configurations.");
|
||||
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, " https://hashcat.net/faq/wrongdriver");
|
||||
event_log_advice (hashcat_ctx, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user