1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 03:08:58 +00:00

Mark Intel OpenCL CPU runtime as broken for hash-mode 15300

This commit is contained in:
Jens Steube 2019-11-05 20:44:19 +01:00
parent 6adc217bae
commit b02fe8e076
2 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@
- Support for inline VeraCrypt PIM Brute-Force
- Support deflate decompression for the 7-Zip hash-mode using zlib hook
- Added documentation on hashcat brain, slow-candidate and keyboard-layout mapping features
- Keep output of --show and --left in the original ordering of the input hash file
##
## Algorithms

View File

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