hashcat Forum
Don't understand how to use the command line - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html)
+--- Thread: Don't understand how to use the command line (/thread-5247.html)



Don't understand how to use the command line - Hexxx - 02-25-2016

Trying to run it like this:
Code:
D:\Downloads\hashcat-2.00\hashcat-2.00>hashcat-cli64.exe -a 0 -m 1000 my.hash
Usage: hashcat [options] hashfile [mask|wordfiles|directories]

Try --help for more help.
So the output means that there's invalid argument. Did a bit of debugging and it just tries to parse "my.hash" as command line argument via getopt_long() and does exit (-1); 
Can't find the way to pass the path to my hash file to the application.


RE: Don't understand how to use the command line - Pixel - 02-25-2016

Usage: hashcat [options] hashfile [mask|wordfiles|directories]

hashcat-cli64.exe -a 0 -m 1000 my.hash missing something


RE: Don't understand how to use the command line - Hexxx - 02-25-2016

Didn't I write the same?


RE: Don't understand how to use the command line - Pixel - 02-25-2016

Usage: hashcat [options] hashfile [mask|wordfiles|directories]

hashcat-cli64.exe -a 0 -m 1000 my.hash [missing.hcmask | missing.wordfiles | missing\directories\path]

is this hint any better Smile