hashcat Forum
Do I have the right command syntax? - 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: Do I have the right command syntax? (/thread-3396.html)



Do I have the right command syntax? - sink0rswim - 05-19-2014

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?


RE: Do I have the right command syntax? - radix - 05-19-2014

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



RE: Do I have the right command syntax? - sink0rswim - 05-19-2014

(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