
**HashEye** é uma poderosa ferramenta Python CLI para detectar e analisar tipos de hash instantaneamente. Ela fornece informações detalhadas sobre formatos de hash, níveis de segurança, análise de entropia e detecção de padrões.
HashEye é uma poderosa ferramenta CLI em Python para detectar e analisar instantaneamente tipos de hash. Ela fornece informações detalhadas sobre formatos de hash, níveis de segurança, análise de entropia e detecção de padrões.
Desenvolvido por Isaac Security Labs
🔗 Links:
hasheye.py para o seu sistemachmod +x hasheye.py
git clone https://github.com/ishaklaz/Hash-Eye.git
cd Hash-Eye
pip install -r requirements.txt
Analisar um único hash:
python3 hasheye.py 5d41402abc4b2a76b9719d911017c592
python3 hasheye.py [OPTIONS] [HASH...]
Opções:
-h, --help Mostrar mensagem de ajuda e sair-j, --json Exibir resultados no formato JSON-f, --file Ler hashes de um arquivo (um por linha)-s, --simple Mostrar saída simplificada sem análise detalhada-v, --version Mostrar informações da versãopython3 hasheye.py 5d41402abc4b2a76b9719d911017c592
Saída:
[+] HashEye Result
──────────────────────────────────────────────────
Hash : 5d41402abc4b2a76b9719d911017c592
Length : 32
Format : HEX
Type(s) : MD5 / NTLM (possible) / LM Hash (possible)
Entropy : 3.8750
Security Level : Weak
Recommendation : Consider upgrading to SHA-256 or SHA-512
──────────────────────────────────────────────────
Powered by Isaac Security Labs
python3 hasheye.py 5d41402abc4b2a76b9719d911017c592 --json
Saída:
{
"hash": "5d41402abc4b2a76b9719d911017c592",
"length": 32,
"format": "hex",
"types": [
"MD5",
"NTLM (possible)",
"LM Hash (possible)"
],
"entropy": 3.875,
"security_level": "Weak",
"recommendation": "Consider upgrading to SHA-256 or SHA-512",
"pattern_analysis": {
"case_mixed": false,
"case_lower": true,
"case_upper": false,
"repeating_chars": [],
"has_sequential": false
}
}
python3 hasheye.py hash1 hash2 hash3
Crie um arquivo hashes.txt:
5d41402abc4b2a76b9719d911017c592
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
Em seguida, execute:
python3 hasheye.py --file hashes.txt
python3 hasheye.py 5d41402abc4b2a76b9719d911017c592 --simple
python3 hasheye.py e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
| Comprimento | Tipos de Hash |
|---|---|
| 24 | bcrypt (possível), scrypt (possível) |
| 44 | bcrypt, scrypt |
| 60 | Argon2 (possível) |
| 86 | bcrypt |
A entropia mede a aleatoriedade de um hash:
A ferramenta detecta:
HashEye pode ser integrado em seus scripts usando a saída JSON:
#!/bin/bash
result=$(python3 hasheye.py "$hash" --json)
hash_type=$(echo "$result" | python3 -c "import sys, json; print(json.load(sys.stdin)['types'][0])")
echo "Detected: $hash_type"
import subprocess
import json
def detect_hash(hash_string):
result = subprocess.run(
['python3', 'hasheye.py', hash_string, '--json'],
capture_output=True,
text=True
)
return json.loads(result.stdout)
info = detect_hash('5d41402abc4b2a76b9719d911017c592')
print(f"Type: {info['types'][0]}")
print(f"Security: {info['security_level']}")
python3 hasheye.py 5d41402abc4b2a76b9719d911017c592
# Length: 32, Type: MD5
python3 hasheye.py aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
# Length: 40, Type: SHA1
python3 hasheye.py e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
# Length: 64, Type: SHA256
python3 hasheye.py cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
# Length: 128, Type: SHA512
Solução: Seu terminal pode não suportar códigos de escape ANSI. As cores são opcionais e não afetam a funcionalidade.
Solução: Certifique-se de que sua string de hash contenha apenas caracteres hexadecimais (0-9, a-f, A-F) ou caracteres Base64 válidos.
Solução: Use caminhos absolutos ou certifique-se de estar no diretório correto ao usar a opção --file.
Contribuições são bem-vindas! Sinta-se à vontade para enviar um Pull Request.
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)Este projeto é licenciado sob a Licença MIT - veja o arquivo LICENSE para detalhes.
Conecte-se conosco:
Para problemas, perguntas ou contribuições:
Feito com ❤️ por Isaac Security Labs
| Comprimento | Tipos de Hash |
|---|
| 32 | MD5, NTLM (possível), LM Hash (possível) |
| 40 | SHA1, RIPEMD-160 |
| 56 | SHA224 |
| 64 | SHA256, SHA3-256, Blake2b-256, RIPEMD-256 |
| 96 | SHA384 |
| 128 | SHA512, SHA3-512, Blake2b-512 |