1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 00:28:11 +00:00

Temporary workaround for #2987

This commit is contained in:
Jens Steube 2021-10-15 11:33:09 +02:00
parent 552e58f3a8
commit 6d24f18f8c

View File

@ -1072,6 +1072,8 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
if (wpa->message_pair & (1 << 7))
{
// replaycount not checked, nc needed
wpa->nonce_error_corrections = NONCE_ERROR_CORRECTIONS; // temporary until architectural change done (module_hash_decode_postprocess?)
}
else
{
@ -1100,6 +1102,10 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
wpa->detected_be = 1;
}
wpa->detected_le = 1; // temporary see https://github.com/hashcat/hashcat/issues/2987
wpa->detected_be = 1; // temporary see https://github.com/hashcat/hashcat/issues/2987
// mic
const u8 *mic_pos = token.buf[2];