'HashCat Separator Unmatched
Trying to run a command to get this 633c097a37b26c0caad3b435b51404ee with
hashcat -a 0 -m 1800 -o final.txt hash.txt /usr/share/wordlists/rockyou.txt
But it gives me an error sayig my separator is unmatched. I'm new to this so I'm not exactly sure what that means or how I can fix it...
Solution 1:[1]
The hash you are trying with is of type MD5, so you have to specify the correct hash type for the hash mode flag -m, which is 0 for the MD5, so it should be -m 0 instead of -m 1800 which is used for sha512crypt $6$, SHA512 (Unix) 2.
Refer to this link from the official documentation of hashcat which provides examples for all the has types.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Moaz El-sawaf |
