1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-08-01 19:38:26 +00:00

Modules: Updated module_unstable_warning for hash-mode 1500

This commit is contained in:
Gabriele Gristina 2025-06-16 08:05:50 +02:00
parent 619b4a3998
commit 027a3a0b39
No known key found for this signature in database
GPG Key ID: 9F68B59298F311F0

View File

@ -60,6 +60,12 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE
return false; return false;
} }
if (device_param->opencl_platform_vendor_id != VENDOR_ID_INTEL_SDK)
{
// works on Linux/POCL
return false;
}
// skip by default for now // skip by default for now
return true; return true;
} }