mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 08:08:10 +00:00
Fixed out-of-boundary read in DPAPI masterkey file v2 OpenCL kernel
This commit is contained in:
parent
e117e750fc
commit
c15f741dca
@ -601,6 +601,8 @@ __kernel void m15900_comp (KERN_ATTR_TMPS_ESALT (dpapimk_tmp_v2_t, dpapimk_t))
|
|||||||
iv[1] = data[1];
|
iv[1] = data[1];
|
||||||
iv[2] = data[2];
|
iv[2] = data[2];
|
||||||
iv[3] = data[3];
|
iv[3] = data[3];
|
||||||
|
|
||||||
|
if (contents_off == 32) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 hmacSalt[4];
|
u32 hmacSalt[4];
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
- Fixed output of --speed-only and --progress-only when fast hashes are used in combination with --slow-candidates
|
- Fixed output of --speed-only and --progress-only when fast hashes are used in combination with --slow-candidates
|
||||||
- Fixed status output of progress value when -S and -l are used in combination
|
- Fixed status output of progress value when -S and -l are used in combination
|
||||||
- Fixed thread count maximum for pure kernels in straight attack mode
|
- Fixed thread count maximum for pure kernels in straight attack mode
|
||||||
|
- Fixed out-of-boundary read in DPAPI masterkey file v2 OpenCL kernel
|
||||||
|
|
||||||
##
|
##
|
||||||
## Technical
|
## Technical
|
||||||
|
Loading…
Reference in New Issue
Block a user