1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-08-01 03:18:17 +00:00

Merge pull request #4283 from roycewilliams/ii-mach-mod

skip non-machine preamble if --backend_info and --machine
This commit is contained in:
Jens Steube 2025-07-07 19:59:54 +02:00 committed by GitHub
commit 615f9f2d83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,8 +89,11 @@ void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag)
} }
else if (user_options->backend_info > 0) else if (user_options->backend_info > 0)
{ {
event_log_info (hashcat_ctx, "%s (%s) starting in backend information mode", PROGNAME, version_tag); if (user_options->machine_readable == false)
event_log_info (hashcat_ctx, NULL); {
event_log_info (hashcat_ctx, "%s (%s) starting in backend information mode", PROGNAME, version_tag);
event_log_info (hashcat_ctx, NULL);
}
} }
else if (user_options->hash_mode_chgd == false) else if (user_options->hash_mode_chgd == false)
{ {