MD4 and MD5 (message-digest) is a widely used hash function producing a 128-bit hash value.
Last updated 1 year ago
Put the md4 hash into the file.
echo -n '<md4-hash>' > hash.txt
Then crack it.
john --format=raw-md4 --wordlist=wordlist.txt hash.txt # or hashcat -m 900 -a 0 hash.txt wordlist.txt
Put the md5 hash into the file.
echo -n '<md5-hash>' > hash.txt
john --format=raw-md5 --wordlist=wordlist.txt hash.txt # or hashcat -m 0 -a 0 hash.txt wordlist.txt
No contents yet
echo -n 'hello' | md5sum md5sum sample.txt