Fixed ignoring --brain-client-features configuration in case brain-server has attack positions informations from a previous run

pull/1751/head
Jens Steube 6 years ago
parent 175fea4094
commit ff6e403703

@ -26,6 +26,7 @@
## Bugs
##
- Fixed ignoring --brain-client-features configuration in case brain-server has attack positions informations from a previous run
- Fixed missing call to WSAStartup() and client indexing in order to start the brain server on windows
- Fixed missing call to WSACleanup() to cleanly shutdown windows sockets system
- Fixed endianness and invalid separator character in outfile format of hash-mode 16801 (WPA-PMKID-PMK)

@ -391,6 +391,8 @@ static int calc (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param)
brain_client_disconnect (device_param);
}
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_ATTACKS)
{
hc_thread_mutex_lock (status_ctx->mux_dispatcher);
if (status_ctx->words_off == 0)
@ -405,6 +407,7 @@ static int calc (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param)
hc_thread_mutex_unlock (status_ctx->mux_dispatcher);
}
}
#endif
// attack modes from here

Loading…
Cancel
Save