Stuck with the following error
#1
Hello All,

I'm running the latest Hashcat 6.2.6 version on Windows 11 Home, and I continue to get the following error. I have updated the graphics drivers, as I thought that may have been the issue, but it still continues to come with the same error. I was just curious if anyone has come across this error and can assist. I have included a screenshot of the error .

C:\hashcat-6.2.6>hashcat -a 0 -m 1000 --username hashdump.txt rockyou.txt
hashcat (v6.2.6) starting

OpenCL API (OpenCL 3.0 ) - Platform #1 [Intel(R) Corporation]
=============================================================
* Device #1: Intel(R) Iris(R) Xe Graphics, 3520/7106 MB (1776 MB allocatable), 96MCU

OpenCL API (OpenCL 3.0 D3D12 Implementation) - Platform #2 [Microsoft]
======================================================================
* Device #2: Intel(R) Iris(R) Xe Graphics, 3808/8039 MB (512 MB allocatable), 1MCU
* Device #3: Microsoft Basic Render Driver, skipped

OpenCL API (OpenCL 3.0 WINDOWS) - Platform #3 [Intel(R) Corporation]
====================================================================
* Device #4: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz, skipped


C:\hashcat-6.2.6>


Attached Files
.png   Screenshot 2024-11-27 202613.png (Size: 71.5 KB / Downloads: 3)
Reply
#2
Try adding --backend-ignore-opencl to the command line.
Reply
#3
(11-27-2024, 02:59 PM)buka Wrote: Try adding --backend-ignore-opencl to the command line.

does need to be at the start or at the end of the command line>?
Reply
#4
(11-27-2024, 02:59 PM)buka Wrote: Try adding --backend-ignore-opencl to the command line.


I did what u said and added it to the command line at the end and then this came up:

C:\hashcat-6.2.6>hashcat -a 0 -m 1000 --username hashdump.txt rockyou.txt --backend-ignore-opencl
hashcat (v6.2.6) starting

ATTENTION! No OpenCL, HIP or CUDA compatible platform found.

You are probably missing the OpenCL, CUDA or HIP runtime installation.

* AMD GPUs on Windows require this driver:
  "AMD Adrenalin Edition" (Adrenalin 22.5.1 exactly)
* Intel CPUs require this runtime:
  "OpenCL Runtime for Intel Core and Intel Xeon Processors" (16.1.1 or later)
* NVIDIA GPUs require this runtime and/or driver (both):
  "NVIDIA Driver" (440.64 or later)
  "CUDA Toolkit" (9.0 or later)

Started: Wed Nov 27 21:53:33 2024
Stopped: Wed Nov 27 21:53:33 2024

C:\hashcat-6.2.6>
Reply
#5
You only have opencl devices, so telling hashcat to ignore them results in no devices to work with

problem is you dont have a real dedicated graphicscard

try the following, adding options -D1 -d4

this will tell hahscat to use your plain CPU only (as your graphic is integrated, this will make no difference in speed -> at least the last time i tested this with integrated graphics there was none)
Reply