Linux command
hashid 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Identify hash type
hashid '[hash]'
Identify from file
hashid [hashes.txt]
Show extended hash types
hashid -e '[hash]'
Show Hashcat mode numbers
hashid -m '[hash]'
Show John the Ripper formats
hashid -j '[hash]'
Output to file
hashid -o [output.txt] '[hash]'
说明
hashid is a Python tool that identifies hash types by analyzing their length and character patterns. It supports over 220 unique hash types including MD5, SHA variants, NTLM, bcrypt, and salted hashes. Useful for penetration testing and security analysis to determine which cracking tool and mode to use.
参数
- -e, --extended
- List all possible hash types including salted.
- -m, --mode
- Show Hashcat mode numbers.
- -j, --john
- Show John the Ripper formats.
- -o, --outfile _file_
- Write output to file.
FAQ
What is the hashid command used for?
hashid is a Python tool that identifies hash types by analyzing their length and character patterns. It supports over 220 unique hash types including MD5, SHA variants, NTLM, bcrypt, and salted hashes. Useful for penetration testing and security analysis to determine which cracking tool and mode to use.
How do I run a basic hashid example?
Run `hashid '[hash]'` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -e, --extended do in hashid?
List all possible hash types including salted.