1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Merge pull request #2230 from Chick3nman/master

Update Terminal.c
This commit is contained in:
Jens Steube 2019-11-18 06:08:08 +01:00 committed by GitHub
commit e08ac2c874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1138,17 +1138,36 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
event_log_info (hashcat_ctx,
"Hash.Target......: %s",
hashcat_status->hash_target);
event_log_info (hashcat_ctx,
if (user_options->force == true)
{
event_log_info (hashcat_ctx,
"Time.Started.....: %s, (%s)",
hashcat_status->time_started_absolute,
hashcat_status->time_started_relative);
}
else
{
event_log_info (hashcat_ctx,
"Time.Started.....: %s (%s)",
hashcat_status->time_started_absolute,
hashcat_status->time_started_relative);
event_log_info (hashcat_ctx,
}
if (user_options->force == true)
{
event_log_info (hashcat_ctx,
"Time.Estimated...: %s, (%s)",
hashcat_status->time_estimated_absolute,
hashcat_status->time_estimated_relative);
}
else
{
event_log_info (hashcat_ctx,
"Time.Estimated...: %s (%s)",
hashcat_status->time_estimated_absolute,
hashcat_status->time_estimated_relative);
}
switch (hashcat_status->guess_mode)
{
case GUESS_MODE_STRAIGHT_FILE: