From 8b9fa631ce39e1b2daba92e6fe984d9ae46edb90 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sat, 11 Dec 2021 16:32:45 +0100 Subject: [PATCH] Fixed missing option flag OPTS_TYPE_SUGGEST_KG for hash-mode 11600 to inform the user about possible false positives in this mode --- docs/changes.txt | 1 + src/modules/module_11600.c | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index f3e8d4594..796d03f67 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -5,6 +5,7 @@ ## - Fixed functional error when nonce-error-corrections that were set on the command line in hash-mode 22000/22001 were not accepted +- Fixed missing option flag OPTS_TYPE_SUGGEST_KG for hash-mode 11600 to inform the user about possible false positives in this mode - Fixed undefined function call to hc_byte_perm_S() in hash-mode 17010 on non-CUDA compute devices ## diff --git a/src/modules/module_11600.c b/src/modules/module_11600.c index 7ed9e213d..220b6af1e 100644 --- a/src/modules/module_11600.c +++ b/src/modules/module_11600.c @@ -26,6 +26,7 @@ static const char *HASH_NAME = "7-Zip"; static const u64 KERN_TYPE = 11600; static const u32 OPTI_TYPE = OPTI_TYPE_ZERO_BYTE; static const u64 OPTS_TYPE = OPTS_TYPE_PT_GENERATE_LE + | OPTS_TYPE_SUGGEST_KG | OPTS_TYPE_HOOK23; static const u32 SALT_TYPE = SALT_TYPE_EMBEDDED; static const char *ST_PASS = "hashcat";