mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-23 00:28:11 +00:00
Update Terminal.c
Increase verbosity for `--force` usage
This commit is contained in:
parent
777ff34f94
commit
b1016aee62
@ -1138,17 +1138,36 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
|
|||||||
event_log_info (hashcat_ctx,
|
event_log_info (hashcat_ctx,
|
||||||
"Hash.Target......: %s",
|
"Hash.Target......: %s",
|
||||||
hashcat_status->hash_target);
|
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)",
|
"Time.Started.....: %s (%s)",
|
||||||
hashcat_status->time_started_absolute,
|
hashcat_status->time_started_absolute,
|
||||||
hashcat_status->time_started_relative);
|
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)",
|
"Time.Estimated...: %s (%s)",
|
||||||
hashcat_status->time_estimated_absolute,
|
hashcat_status->time_estimated_absolute,
|
||||||
hashcat_status->time_estimated_relative);
|
hashcat_status->time_estimated_relative);
|
||||||
|
}
|
||||||
|
|
||||||
switch (hashcat_status->guess_mode)
|
switch (hashcat_status->guess_mode)
|
||||||
{
|
{
|
||||||
case GUESS_MODE_STRAIGHT_FILE:
|
case GUESS_MODE_STRAIGHT_FILE:
|
||||||
|
Loading…
Reference in New Issue
Block a user