mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-23 08:38:09 +00:00
Allow user to override nonce_error_corrections regardless of information from message_pair
This commit is contained in:
parent
964cff951f
commit
632b6db5f9
@ -1305,23 +1305,23 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = NONCE_ERROR_CORRECTIONS;
|
||||
}
|
||||
|
||||
if (wpa->message_pair & (1 << 4))
|
||||
{
|
||||
// ap-less attack detected, nc not needed
|
||||
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (wpa->message_pair & (1 << 7))
|
||||
if (wpa->message_pair & (1 << 4))
|
||||
{
|
||||
// replaycount not checked, nc needed
|
||||
// ap-less attack detected, nc not needed
|
||||
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = 0;
|
||||
if (wpa->message_pair & (1 << 7))
|
||||
{
|
||||
// replaycount not checked, nc needed
|
||||
}
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1305,23 +1305,23 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = NONCE_ERROR_CORRECTIONS;
|
||||
}
|
||||
|
||||
if (wpa->message_pair & (1 << 4))
|
||||
{
|
||||
// ap-less attack detected, nc not needed
|
||||
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (wpa->message_pair & (1 << 7))
|
||||
if (wpa->message_pair & (1 << 4))
|
||||
{
|
||||
// replaycount not checked, nc needed
|
||||
// ap-less attack detected, nc not needed
|
||||
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = 0;
|
||||
if (wpa->message_pair & (1 << 7))
|
||||
{
|
||||
// replaycount not checked, nc needed
|
||||
}
|
||||
else
|
||||
{
|
||||
wpa->nonce_error_corrections = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user