mirror of
https://github.com/hashcat/hashcat
synced 2024-11-28 05:21:38 +01:00
corrected ASCII plaintext check from >=20 to >=0x20
This commit is contained in:
parent
4fe68b0d4f
commit
b01f4e5c2e
@ -364,7 +364,7 @@ KERNEL_FQ void m25400_comp (KERN_ATTR_TMPS_ESALT (pdf14_tmp_t, pdf_t))
|
||||
// we don't use the user-password in the attack now (as we don't need it),
|
||||
// however we could use it in the comparison of the decrypted o-value,
|
||||
// yet it may make this attack a bit more fragile, as now we just check for ASCII
|
||||
if ((u8OutBufPtr[i] >= 20 && u8OutBufPtr[i] <= 0x7e) ||
|
||||
if ((u8OutBufPtr[i] >= 0x20 && u8OutBufPtr[i] <= 0x7e) ||
|
||||
(u8OutBufPtr[i] == u8OutPadPtr[i_padding]))
|
||||
{
|
||||
if (u8OutBufPtr[i] == u8OutPadPtr[i_padding])
|
||||
@ -374,7 +374,7 @@ KERNEL_FQ void m25400_comp (KERN_ATTR_TMPS_ESALT (pdf14_tmp_t, pdf_t))
|
||||
}
|
||||
else
|
||||
{
|
||||
if (u8OutBufPtr[i] >= 20 && u8OutBufPtr[i] <= 0x7e)
|
||||
if (u8OutBufPtr[i] >= 0x20 && u8OutBufPtr[i] <= 0x7e)
|
||||
{
|
||||
//printf("correct ASCII byte[%d]=0x%02x\n", i, u8OutBufPtr[i]);
|
||||
}
|
||||
|
@ -376,7 +376,7 @@ KERNEL_FQ void m26610_comp (KERN_ATTR_TMPS_ESALT (pbkdf2_sha256_tmp_t, pbkdf2_sh
|
||||
|
||||
for(int i=0;i<16;i++)
|
||||
{
|
||||
if(u8OutBufPtr[i] >=20 && u8OutBufPtr[i] <= 0x7e) {
|
||||
if(u8OutBufPtr[i] >=0x20 && u8OutBufPtr[i] <= 0x7e) {
|
||||
//if ((gid == 0) && (lid == 0)) printf("correct ASCII byte[%d]=0x%02x\n", i, u8OutBufPtr[i]);
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user