![]() |
No such file or folder oclhashcat win amd - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: No such file or folder oclhashcat win amd (/thread-3691.html) |
No such file or folder oclhashcat win amd - insanefish - 09-25-2014 Hallo all I try to run the following from a batch scrip: Code: oclHashcat64.exe -m 2500 "D:\WPA2 hack\oclHashcat-1.30\23908_1411573086.hccap" "D:\WPA2 hack\oclHashcat-1.30\file.txt" The files are there, tripple checked. The no such file or folder for file.txt. ERROR: D:\WPA2 hack\oclHashcat-1.30\file.txt: No such file or directory Any tips? This is my first try for WPA2 key recovery. RE: No such file or folder oclhashcat win amd - coolbry95 - 09-25-2014 Try a relative path like .\file.txt. RE: No such file or folder oclhashcat win amd - insanefish - 09-25-2014 Same error. ERROR: .\file.txt: No such file or directory Edit: Also tried to save the file on root D:\ without that helping RE: No such file or folder oclhashcat win amd - forumhero - 09-30-2014 try moving the file.txt and the hccap files the hashcat folder. Then your command line will be: oclHashcat64.exe -m 2500 23908_1411573086.hccap file.txt RE: No such file or folder oclhashcat win amd - alert - 09-13-2015 Hey ! Got exactly the same probleme here on The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali), No Such file or directory ...... Quadrupletrillon check ... I tryed : hashcat --hash-type= 0 --attack-mode=3 -o out.txt /usr/share/myfolder/hash.hash hashcat --hash-type= 0 --attack-mode=3 -o out.txt hash.hash also when I put hashcat -m 0 -a 3 -o out.xt whateverhere.hash I get Try --help for more help .... Also my hash file, I made it in txt editor , it contains only 32chars MD5 crypt ... in case that's wrong Anyone ? RE: No such file or folder oclhashcat win amd - rico - 09-13-2015 -a 3 is brute-force but you haven't specified a mask. hashcat-cli64 -m 0 -a 3 -o out.txt hash.hash ?l?l?l?l?l?l?l As for "--hash-type= 0" returning "No such file or directory", seems hashcat doesn't like equals with space "= " so it's trying to find a file called "0". Use equals or space, not both. hashcat-cli64 --hash-type=0 --attack-mode=3 -o out.txt hash.hash ?l?l?l?l?l?l?l RE: No such file or folder oclhashcat win amd - alert - 09-13-2015 works like a charm ![]() I'm using hascat but will try GPU version now ![]() (09-13-2015, 10:29 PM)rico Wrote: -a 3 is brute-force but you haven't specified a mask. |