mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-09 23:31:14 +00:00
Fixed access to filename which is a null-pointer in benchmark mode
This commit is contained in:
parent
0439f0c4a1
commit
fb081947e1
@ -40,6 +40,7 @@
|
|||||||
## Bugs
|
## 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 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 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
|
- 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_t *user_options = hashcat_ctx->user_options;
|
||||||
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
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
|
* load hashes, part I: find input mode, count hashes
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user