From: philsmd Date: Tue, 19 Jan 2016 18:04:52 +0000 (+0100) Subject: buffer overflow fix for -m 8900 = scrypt X-Git-Tag: v3.00-beta~481^2^2 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=5e920201807b65249d2f8e42832b53386b4d0bc1;p=hashcat.git buffer overflow fix for -m 8900 = scrypt --- diff --git a/src/shared.c b/src/shared.c index a508d75..c50e32b 100644 --- a/src/shared.c +++ b/src/shared.c @@ -14586,7 +14586,7 @@ int scrypt_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf) // base64 decode - u8 tmp_buf[32]; + u8 tmp_buf[33]; memset (tmp_buf, 0, sizeof (tmp_buf));