Base32, Base64
Online Tools
Decrypt
MD4
Place the MD4 hash into a file
echo -n '<md4-hash>' > hash.txt
Use 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.txt
MD5
Place the MD4 hash into a file
echo -n '<md5-hash>' > hash.txt
Use 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.txt
Encrypt
echo -n 'hello' | md5sum
md5sum sample.txt

Last updated