hashcat Forum

Full Version: Hashcat not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everybody

every time i tried to crack hash did not work

look this command

Code:
hashcat -m 0 -a 1 '/root/md5/hashpassword.txt' '/root/md5/rockyou.txt'

it's not working ....

Why ???!!!
"it's not working" is no acceptable problem description. If you have error messages post them. If you have no error messages explain what you are experiencing and what you would expect to happen.

In your case you're using a1 with only one dict.
(05-23-2019, 09:07 PM)undeath Wrote: [ -> ]"it's not working" is no acceptable problem description. If you have error messages post them. If you have no error messages explain what you are experiencing and what you would expect to happen.

In your case you're using a1 with only one dict.


Error Message :

Code:
Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]...

Try --help for more help.
can anybody help me ?
-a 1 is for concatenating two dicts, use -a 0 instead (with one dict)

Code:
hashcat -m 0 -a 0 '/root/md5/hashpassword.txt' '/root/md5/rockyou.txt'

the correct answer was already provided by undeath