Fixed access to filename which is a null-pointer in benchmark mode

pull/2624/head^2
Jens Steube 3 years ago
parent 0439f0c4a1
commit fb081947e1

@ -40,6 +40,7 @@
## Bugs
##
- Fixed access to filename which is a null-pointer in benchmark mode
- Fixed both false negative and false positive result in -m 3000 in -a 3 (affected only NVIDIA GPU)
- Fixed buffer overflow in -m 1800 in -O mode which is optimized to handle only password candidates up to length 15
- Fixed buffer overflow in -m 4710 in -P mode and only in single hash mode if salt length was larger than 32 byte

@ -629,6 +629,8 @@ int hashes_init_filename (hashcat_ctx_t *hashcat_ctx)
user_options_t *user_options = hashcat_ctx->user_options;
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
if (user_options->benchmark == true) return 0;
/**
* load hashes, part I: find input mode, count hashes
*/

Loading…
Cancel
Save