mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Fixed overflow in bcrypt kernel in expand_key() function
This commit is contained in:
parent
d57b493d13
commit
89f8739dde
@ -383,6 +383,8 @@ void expand_key (u32 E[18], const u32 W[16], const u32 len)
|
||||
while (W_cur < W_stop)
|
||||
{
|
||||
*E_cur++ = *W_cur++;
|
||||
|
||||
if (E_cur == E_stop) return;
|
||||
}
|
||||
|
||||
*E_cur++ = 0;
|
||||
|
@ -52,6 +52,7 @@
|
||||
- Fixed DEScrypt cracking in BF mode in case the hashlist contains more than 16 times the same salt
|
||||
- Fixed duplicate detection for WPA handshakes with the same ESSID
|
||||
- Fixed nvapi datatype definition for NvS32 and NvU32
|
||||
- Fixed overflow in bcrypt kernel in expand_key() function
|
||||
- Fixed pointer to local variable outside scope in case -j or -k is used
|
||||
- Fixed pointer to local variable outside scope in case --markov-hcstat is not used
|
||||
- Fixed recursion in loopback handling when session was aborted by the user
|
||||
|
Loading…
Reference in New Issue
Block a user