1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-24 07:28:37 +00:00

skip preamble if --backend_info and --machine

This commit is contained in:
Royce Williams 2025-07-01 18:31:20 -08:00
parent 5c1ae6a1f6
commit 76869e5099

View File

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