No such file or folder oclhashcat win amd
#1
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.


Attached Files Thumbnail(s)
   
#2
Try a relative path like .\file.txt.
#3
Same error.
ERROR: .\file.txt: No such file or directory

Edit: Also tried to save the file on root D:\ without that helping
#4
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
#5
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 ?
#6
-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
#7
works like a charm Smile thanks !

I'm using hascat but will try GPU version now Smile 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