linker command failed/Final linking of kernel gpu_decompress failed. - 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: linker command failed/Final linking of kernel gpu_decompress failed. (/thread-11169.html) |
linker command failed/Final linking of kernel gpu_decompress failed. - windowshopr - 12-06-2022 I ran into this issue with hashcat earlier today, so I uninstalled and re-installed, same issue. I'm trying to run this command: Code: sudo hashcat -m 22001 -a 3 WPA*01*9660cab2a78529b0db720296d1edf9d3*c089ab84f750*705a0f7a6835*5341534b54454c30304448*** ?u?u?u?u -d 1 -v --backend-ignore-cuda -m tried 22000 and 22001 for the hash type -a 3 for brute force -d 1 for cpu --backend-ignore-cuda as the error alludes to a gpu issue, which I don't have a GPU in this laptop. I've updated my The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) Linux environment with update and upgrade before attempting the clean install of hashcat, same issue. What does this error mean? Here is the full traceback: Code: OpenCL API (OpenCL 2.0 pocl 1.8 Linux, None+Asserts, RELOC, LLVM 9.0.1, SLEEF, DISTRO, POCL_DEBUG) - Platform #1 [The pocl project] RE: linker command failed/Final linking of kernel gpu_decompress failed. - slyexe - 12-06-2022 Install the proper drivers, don't use POCL project. Use ROCM or official Intel Drivers. Code: sudo hashcat -m 22001 -a 3 ?u?u?u?u -d 1 -v --backend-ignore-cuda This also makes no sense, you have no hash applied to your command. Use hashcat -h for proper parameter usage, using shell or terminal also can have issues using special characters so placing your hashes within a text file is best suitable to avoid conflictions within terminals. RE: linker command failed/Final linking of kernel gpu_decompress failed. - windowshopr - 12-07-2022 (12-06-2022, 11:30 PM)slyexe Wrote: Install the proper drivers, don't use POCL project. Use ROCM or official Intel Drivers. Thanks! I'll look into installing the proper drivers! And that last part is just the output from the traceback. If you look at the command I entered further up, I DO provide a hash value, and have also tried supplying an actual .hccapx and .hc22000 file, same result. I'll try and document my steps for getting this working... RE: linker command failed/Final linking of kernel gpu_decompress failed. - windowshopr - 12-07-2022 Ok, so far, nothing. When I follow the installation steps for the latest release of OpenCL at their Github page, here: https://github.com/intel/compute-runtime/releases/tag/22.43.24595.30 ...I get a missing package issue about one of the dependencies as it doesn't seem to be included, so I first install a previous version: wget https://github.com/intel/compute-runtime/releases/download/22.14.22890/intel-gmmlib_22.0.2_amd64.deb wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.10840/intel-igc-core_1.0.10840_amd64.deb wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.10840/intel-igc-opencl_1.0.10840_amd64.deb wget https://github.com/intel/compute-runtime/releases/download/22.14.22890/intel-opencl-icd-dbgsym_22.14.22890_amd64.ddeb wget https://github.com/intel/compute-runtime/releases/download/22.14.22890/intel-opencl-icd_22.14.22890_amd64.deb wget https://github.com/intel/compute-runtime/releases/download/22.14.22890/intel-level-zero-gpu-dbgsym_1.3.22890_amd64.ddeb wget https://github.com/intel/compute-runtime/releases/download/22.14.22890/intel-level-zero-gpu_1.3.22890_amd64.deb sudo dpkg -i *.deb ...and try the crack again, same issue. Then I try to follow similar steps above for the latest version, same issue. So I'm going to try ROCM next I guess? RE: linker command failed/Final linking of kernel gpu_decompress failed. - windowshopr - 12-07-2022 Ok after a long battle, I was finally able to install the Intel OpenCL library, even though it says Debian/The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) is not supported. HOWEVER, now I ran into this issue: Minimum password length supported by kernel: 64 Skipping mask '?u?u?u?u' because it is smaller than the minimum password length. Why is my minimum password length set so high? Can I change it? to say, 1???? RE: linker command failed/Final linking of kernel gpu_decompress failed. - ZerBea - 12-07-2022 hash mode 22000 is to recover a PSK (Pre Shared Key) which can be 8 ... 63 characters hash mode 22001 is to verify a PMK (Plain Master Key) which is always 64 HEX characters. Your mask (?u?u?u?u) is too short to recover a PSK RE: linker command failed/Final linking of kernel gpu_decompress failed. - windowshopr - 12-07-2022 Oh I see, that number changes with the different hash types you choose, got it. Don't get too hung up on that, it's just there for visual reference so I don't have to put ?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u?u for the mask lol RE: linker command failed/Final linking of kernel gpu_decompress failed. - Snoopy - 03-09-2023 dont really sure about linux but on windows -d1 only works in conjunction with -D1, as hashcat defaults to type2, so the right options for using cpu is -D1 -d1 example plain cpu setup: hashcat -d1 -b -m0 No devices found/left hashcat -D1 -d1 -b -m0 Speed.#1.........: 1240.5 MH/s |