1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-02 10:51:16 +00:00

Add unstable warning for -m 10700 for Intel CPU

This commit is contained in:
Jens Steube 2019-11-14 12:46:09 +01:00
parent 7458e4f487
commit 664e595b45

View File

@ -141,6 +141,12 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE
}
}
// l_opencl_p_18.1.0.013.tgz: Segmentation fault
if ((device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) && (device_param->opencl_device_type & CL_DEVICE_TYPE_CPU))
{
return true;
}
return false;
}