Hash Identifier
Identification automatique du type de hash et informations sur les algorithmes.
Identifier un Hash
Longueur: 0 caracteres
Type: -
Generateur de Hash
Reference des Algorithmes
Exemples de Hash
Types de Hash Courants
| Algorithme | Longueur | Usage |
|---|---|---|
| MD5 | 32 hex | Legacy, checksums |
| SHA-1 | 40 hex | Git, legacy |
| SHA-256 | 64 hex | Securite moderne |
| SHA-512 | 128 hex | Haute securite |
| Bcrypt | 60 chars | Mots de passe |
| NTLM | 32 hex | Windows auth |
Verification en CLI
# Generer des hash
echo -n "password" | md5sum
echo -n "password" | sha1sum
echo -n "password" | sha256sum
echo -n "password" | sha512sum
# Verifier un fichier
sha256sum fichier.iso
sha256sum -c checksums.txt
# Hashcat - identifier
hashcat --identify hash.txt
# John the Ripper
john --list=formats | grep -i sha