Merge pull request #3376 from philsmd/token_length_exception_summary

warning about token length exception was showing incorrect values/percentage
pull/3368/merge
Jens Steube 2 years ago committed by GitHub
commit eb9bb1c363
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1897,7 +1897,7 @@ int hashes_init_stage1 (hashcat_ctx_t *hashcat_ctx)
if (hashes->parser_token_length_cnt > 0)
{
event_log_advice (hashcat_ctx, NULL); // we can guarantee that the previous line was not an empty line
event_log_advice (hashcat_ctx, "* Token length exception: %u/%u hashes", hashes->parser_token_length_cnt, hashes->parser_token_length_cnt + hashes->hashes_cnt_orig);
event_log_advice (hashcat_ctx, "* Token length exception: %u/%u hashes", hashes->parser_token_length_cnt, hashes->parser_token_length_cnt + hashes->hashes_cnt);
event_log_advice (hashcat_ctx, " This error happens if the wrong hash type is specified, if the hashes are");
event_log_advice (hashcat_ctx, " malformed, or if input is otherwise not as expected (for example, if the");
event_log_advice (hashcat_ctx, " --username option is used but no username is present)");

Loading…
Cancel
Save