Hashes

Herramientas

Google Colaboratory (Colab)

Colabcat

Search-That-Hash

MD5

John the Ripper

john hash.txt --wordlist=<path-wordlist> --format=Raw-MD5
john hash.txt --format=Raw-MD5 --show

Hastcat

hashcat -m 0 -a 0 hash.txt <path-wordlist>
hashcat -m 0 hash.txt --show

LM

  • Hash LM en blanco = aad3b435b51404eeaad3b435b51404ee

John the Ripper

john hash.txt --wordlist=<path-wordlist> --format=LM
john hash.txt --format=LM --show

Hashcat

hashcat -m 3000 -a 0 hash.txt <path-wordlist>
hashcat -m 3000 hash.txt --show

NT

  • Hash NT en blanco = 31d6cfe0d16ae931b73c59d7e0c089c0

John the Ripper

john hash.txt --wordlist=<path-wordlist> --format=NT
john hash.txt --format=NT --show

Hashcat

hashcat -m 1000 -a 0 hash.txt <path-wordlist>
hashcat -m 1000 hash.txt --show

NTLMv2

Hashcat

hashcat -m 5600 -a 0 hash.txt <path-wordlist>
hashcat -m 5600 hash.txt --show

SHA-256

Hashcat

hashcat -m 1400 -a 0 hash.txt <path-wordlist>
hashcat -m 1400 hash.txt --show

Última actualización