Hashcat
Post

Hashcat

Identify the hash type

If you want to know the type of a password’s hash you can run the following command on your machine:

1
hashcat.exe -j -m hash.txt

And it will throw the type:

1
2
3
4
Hash-mode was not specified with -m. Attempting to auto-detect hash mode.
The following mode was auto-detected as the only one matching your input hash:

400 | phpass | Generic KDF

Another resource to check hash types is on Hashcat Documentation

Dictionary Attack

Then you can execute a dictionary attack with your favorite dictionary:

1
hashcat.exe -m 400 -a 0 hash.txt rockyou.txt

Examples: Acute