From 4ce60a6c6164d351588cd4cd42df69461f9d77fa Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Wed, 12 May 2021 07:42:46 +0200 Subject: [PATCH] Add module_unstable_warning() entry for -m 21800 using rocr drivers --- src/modules/module_21800.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/modules/module_21800.c b/src/modules/module_21800.c index de6847163..ca567e9f3 100644 --- a/src/modules/module_21800.c +++ b/src/modules/module_21800.c @@ -96,6 +96,14 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE } } + // amdgpu-pro-20.50-1234664-ubuntu-20.04 (rocr) + // test_1620713931/test_report.log:! unhandled return code 255, cmdline : cat test_1620713931/21800_passwords.txt | ./hashcat --quiet --potfile-disable --runtime 400 --hwmon-disable -O -D 2 --backend-vector-width 4 -a 0 -m 21800 test_1620713931/21800_hashes.txt + // test_1620719578/test_report.log:! unhandled return code 255, cmdline : cat test_1620719578/21800_passwords.txt | ./hashcat --quiet --potfile-disable --runtime 400 --hwmon-disable -D 2 --backend-vector-width 4 -a 0 -m 21800 test_1620719578/21800_hashes.txt + if ((device_param->opencl_device_vendor_id == VENDOR_ID_AMD) && (device_param->has_vperm == true)) + { + return true; + } + // amdgpu-pro-20.50-1234664-ubuntu-20.04 (legacy) // test_1619943729/test_report.log:! unhandled return code 255, cmdline : cat test_1619943729/21800_passwords.txt | ./hashcat --quiet --potfile-disable --runtime 400 --hwmon-disable -O -D 2 --backend-vector-width 1 -a 0 -m 21800 test_1619943729/21800_hashes.txt // test_1619955152/test_report.log:! unhandled return code 255, cmdline : cat test_1619955152/21800_passwords.txt | ./hashcat --quiet --potfile-disable --runtime 400 --hwmon-disable -D 2 --backend-vector-width 4 -a 0 -m 21800 test_1619955152/21800_hashes.txt