Error hipDeviceGetCount(): 100 - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Error hipDeviceGetCount(): 100 (/thread-11292.html) |
Error hipDeviceGetCount(): 100 - sdima75 - 02-03-2023 Hello. I have hashcat v6.2.6 and NVIDIA GeForce RTX 3050 Laptop GPU and AMD Ryzen 5 5600H with Radeon Graphics. I have an error: Code: hashcat (v6.2.6) starting Can you please tell me how I can fix this error? Thank you! RE: Error hipDeviceGetCount(): 100 - sdima75 - 02-03-2023 I have CUDA Toolkit. RE: Error hipDeviceGetCount(): 100 - marc1n - 02-03-2023 Check your hashes with example https://hashcat.net/wiki/doku.php?id=example_hashes Paste here your command. RE: Error hipDeviceGetCount(): 100 - sdima75 - 02-03-2023 wpa hashcat.exe -m 2500 -a 3 proba.hccapx '7?d?d?d?d?d?d' -------------- hipDeviceGetCount(): 100 nvmlDeviceGetFanSpeed(): Not Supported ... The plugin 2500 is deprecated and was replaced with plugin 22000. For more details, please read: https://hashcat.net/forum/thread-10253.html --------------- Then... hashcat.exe -m 22000 -a 3 proba.hccapx '7?d?d?d?d?d?d' ------- hipDeviceGetCount(): 100 nvmlDeviceGetFanSpeed(): Not Supported ... No hashes loaded. --------- if - hashcat.exe -m 22000 -a 3 proba.cap '7?d?d?d?d?d?d' ----- Hashfile 'proba.cap' on line 189841 (): Separator unmatched * Token length exception: 4/4 hashes This error happens if the wrong hash type is specified, if the hashes are malformed, or if input is otherwise not as expected (for example, if the --username option is used but no username is present) ------- RE: Error hipDeviceGetCount(): 100 - slyexe - 02-03-2023 You're using old methods. See the hcxtools thread to learn the proper way to capture WPA hashes now. RE: Error hipDeviceGetCount(): 100 - sdima75 - 02-03-2023 Thank you for the information. I understand that. I'm researching the information now... RE: Error hipDeviceGetCount(): 100 - sdima75 - 02-03-2023 I use airodump-ng for handshake (file.cap) Then converting the file: hcxpcapngtool -o 303.hc22000 file.cap https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2 Then: hashcat.exe -m 22000 -a 303.hc22000 '5?d?d?' It seems to work. Am I doing everything right? However, information always appears: hipDeviceGetCount(): 100 nvmlDeviceGetFanSpeed(): Not Supported RE: Error hipDeviceGetCount(): 100 - slyexe - 02-03-2023 aircrack-ng suite might not take advantage of all capture methods (I haven't used it in ages so can't relate to if its been updated or not with PMKID) Eitherway, hcxdumptool is a more effective way of capturing data. If you're not familiar with it you can always use scripts such as wifite2 to automate the process for you. As for the errors... Code: hipDeviceGetCount(): 100 This would be relating to just your CPU's onboard graphics which I am assuming you are not using. It should not have any impact on the cracking process it is strictly just informing you of the drivers details. RE: Error hipDeviceGetCount(): 100 - sdima75 - 02-13-2023 (02-03-2023, 07:48 PM)slyexe Wrote: aircrack-ng suite might not take advantage of all capture methods (I haven't used it in ages so can't relate to if its been updated or not with PMKID) Eitherway, hcxdumptool is a more effective way of capturing data. If you're not familiar with it you can always use scripts such as wifite2 to automate the process for you. Thanks for the information! Thank you for your response! |