1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00

Fixed missing to copy the dictfile to dictfile_padded buffer

This commit is contained in:
Jens Steube 2020-03-10 15:49:02 +01:00
parent d706f90a75
commit d2527d142a

View File

@ -383,6 +383,8 @@ int count_words (hashcat_ctx_t *hashcat_ctx, HCFILE *fp, const char *dictfile, u
u32 *dictfile_padded = (u32 *) hcmalloc (dictfile_len + 64); // padding required for sha1_update()
memcpy (dictfile_padded, dictfile, dictfile_len);
sha1_ctx_t sha1_ctx;
sha1_init (&sha1_ctx);
sha1_update (&sha1_ctx, dictfile_padded, dictfile_len);