From: Jens Steube Date: Sat, 11 Jun 2016 21:29:20 +0000 (+0200) Subject: Fix precompute bug in PeopleSoft PS_TOKEN X-Git-Tag: v3.00~65 X-Git-Url: https://www.flypig.org.uk/git/?p=hashcat.git;a=commitdiff_plain;h=eb88171bdd190e5f6c18e6cc7ae7d1fd4aaf8e2f Fix precompute bug in PeopleSoft PS_TOKEN --- diff --git a/src/shared.c b/src/shared.c index d987c09..ac99216 100644 --- a/src/shared.c +++ b/src/shared.c @@ -12095,7 +12095,7 @@ int pstoken_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf) pstoken->pc_offset = 0; - for (int i = 0; i < (int) pstoken->salt_len - 64; i += 64) + for (int i = 0; i < (int) pstoken->salt_len - 63; i += 64) { uint w[16];