1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-14 03:39:09 +00:00

Fix buffer overflow in module_hash_encode() in hash-mode 13600

This commit is contained in:
Jens Steube 2020-02-13 13:59:32 +01:00
parent c9fdb34698
commit 42e7fa1303

View File

@ -364,7 +364,7 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
const u32 data_len = zip2->data_len;
char data_tmp[8192 + 1] = { 0 };
char data_tmp[16384 + 1] = { 0 };
for (u32 i = 0, j = 0; i < data_len; i += 1, j += 2)
{