Base32, Base64
Online Tools
Decrypt
MD4
Place the MD4 hash into a file
echo -n '<md4-hash>' > hash.txtUse John The Ripper (JTR) or Hashcat to crack it
john --format=raw-md4 --wordlist=wordlist.txt hash.txt
# or
hashcat -m 900 -a 0 hash.txt wordlist.txtMD5
Place the MD4 hash into a file
echo -n '<md5-hash>' > hash.txtUse John The Ripper (JTR) or Hashcat to crack it
john --format=raw-md5 --wordlist=wordlist.txt hash.txt
# or
hashcat -m 0 -a 0 hash.txt wordlist.txtEncrypt
echo -n 'hello' | md5sum
md5sum sample.txt
Last updated