From 8a47c32537f6b7ca1ab825a7bec728fbf76845f9 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 31 Dec 2016 13:37:26 +0100 Subject: [PATCH 1/3] Fixed display screen to show input queue when using custom charset or rules --- docs/changes.txt | 1 + src/terminal.c | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index c2f3e86da..739498004 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -26,6 +26,7 @@ - Fixed infinite loop when using --loopback in case all hashes have been cracked - Fixed kernel loops in --increment mode leading to slower performance - Fixed mask length check in hybrid attack-modes: Do not include hash-mode dependant mask length checks +- Fixed display screen to show input queue when using custom charset or rules ## ## Technical diff --git a/src/terminal.c b/src/terminal.c index daecb619f..641213e92 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -899,6 +899,26 @@ void status_display (hashcat_ctx_t *hashcat_ctx) break; + case INPUT_MODE_STRAIGHT_FILE_RULES_FILE: + + event_log_info (hashcat_ctx, + "Input.Queue......: %d/%d (%.02f%%)", + hashcat_status->input_base_offset, + hashcat_status->input_base_count, + hashcat_status->input_base_percent); + + break; + + case INPUT_MODE_STRAIGHT_FILE_RULES_GEN: + + event_log_info (hashcat_ctx, + "Input.Queue......: %d/%d (%.02f%%)", + hashcat_status->input_base_offset, + hashcat_status->input_base_count, + hashcat_status->input_base_percent); + + break; + case INPUT_MODE_MASK: event_log_info (hashcat_ctx, From a4f40ac226fa37d24eea5ea10d2debe202f7d4ce Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 31 Dec 2016 13:52:35 +0100 Subject: [PATCH 2/3] Added old potfile detection, show warning message --- docs/changes.txt | 1 + src/potfile.c | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index 739498004..ec0a01797 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -42,6 +42,7 @@ - Hash Parser: Improved error detection of invalid hex characters where hex character are expected - OpenCL Runtime: Updated AMDGPU-Pro driver version check, do warn if version 16.50 is detected which is known to be broken - Potfile: In v3.10 already, the default potfile suffix changed but the note about was missing. The "hashcat.pot" became "hashcat.potfile" +- Potfile: Added old potfile detection, show warning message - Sanity: Added sanity check to disallow --speed-only in combination with -i - Threads: Replaced all calls to ctime() with ctime_r() to ensure thread safety - Threads: Replaced all calls to strerror() with %m printf() GNU extension to ensure thread safety diff --git a/src/potfile.c b/src/potfile.c index aac22d6f0..af80430a7 100644 --- a/src/potfile.c +++ b/src/potfile.c @@ -125,6 +125,26 @@ int potfile_init (hashcat_ctx_t *hashcat_ctx) potfile_ctx->tmp_buf = tmp_buf; + // old potfile detection + + if (user_options->potfile_path == NULL) + { + char *potfile_old; + + hc_asprintf (&potfile_old, "%s/hashcat.pot", folder_config->profile_dir); + + hc_stat_t st; + + if (hc_stat (potfile_old, &st) == 0) + { + event_log_warning (hashcat_ctx, "Old potfile detected: %s", potfile_old); + event_log_warning (hashcat_ctx, "New potfile is: %s ", potfile_ctx->filename); + event_log_warning (hashcat_ctx, ""); + } + + hcfree (potfile_old); + } + return 0; } From 991c79f0bfe2df052431f53574612aa0c7729cbb Mon Sep 17 00:00:00 2001 From: Leon Klingele Date: Sat, 31 Dec 2016 14:43:08 +0100 Subject: [PATCH 3/3] Iris Pro: Tune {True,Vera}Crypt --- hashcat.hctune | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hashcat.hctune b/hashcat.hctune index bdd85671b..80314f32c 100644 --- a/hashcat.hctune +++ b/hashcat.hctune @@ -441,4 +441,10 @@ Iris * 13000 1 1 Iris_Pro * 5000 1 8 8 Iris_Pro * 6100 1 4 16 +Iris_Pro * 6231 1 1 64 +Iris_Pro * 6232 1 1 32 +Iris_Pro * 6233 1 1 16 Iris_Pro * 8700 1 1 256 +Iris_Pro * 13731 1 1 64 +Iris_Pro * 13732 1 1 32 +Iris_Pro * 13733 1 1 16