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"
pause
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.
Try a relative path like .\file.txt.
Same error.
ERROR: .\file.txt: No such file or directory
Edit: Also tried to save the file on root D:\ without that helping
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
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 ?
-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
works like a charm
thanks !
I'm using hascat but will try GPU version now
I have a alienware hope it helps
(09-13-2015, 10:29 PM)rico Wrote: [ -> ]-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