Do I have the right command syntax?
#1
Question 
I am wanting to crack a WPA2 hash and output the password to hash.txt
I know the WPA key is 10 characters long and consists of A-F and 0-9
(EG FC2B8D9F8A)

As far as I can gather this works
cudaHashcat64 -m 2500 -a 3 --status-timer=10 -1 ?dABCDEF -o hash.txt cap.hccap ?1?1?1?1?1?1?1?1?1?1

but is it working the way I hope it is?
#2
looks fine but it would be more logical to group your options like

Code:
cudaHashcat64 -m 2500 cap.hccap -o hash.txt -a 3 -1 ?dABCDEF ?1?1?1?1?1?1?1?1?1?1
#3
(05-19-2014, 08:30 AM)radix Wrote: looks fine but it would be more logical to group your options like

Code:
cudaHashcat64 -m 2500 cap.hccap -o hash.txt -a 3 -1 ?dABCDEF ?1?1?1?1?1?1?1?1?1?1

Wow that was quick :p Thanks for confirming that for me Smile Will do that from now on, does make sense