Raw & unsalted hashes
How to identify and crack a Tiger-192 hash
Identify a Tiger-192 hash and crack it with ready-to-run hashcat and John the Ripper commands. Fast on a GPU.
John format tiger
Tiger-192 is a raw / unsalted hash type. It is fast and typically unsalted, which makes weak passwords recoverable quickly on consumer GPU hardware. This page shows how to recognise it and the exact commands to attack it.
All identification runs locally in WebAssembly. The commands below write the hash to a local file on your machine — nothing is sent to this site.
Identifying the hash
The hash identifier on the home page detects Tiger-192 entirely in your browser — your hash is never uploaded. A typical example looks like this:
8a866c2b4d5e6f70819293a4b5c6d7e8f9a0b1c2d3e4f506
Cracking Tiger-192 with John the Ripper
John the Ripper can attack the same hash with the tiger format:
echo '8a866c2b4d5e6f70819293a4b5c6d7e8f9a0b1c2d3e4f506' > hash.txt && john --format=tiger --wordlist=/usr/share/wordlists/rockyou.txt hash.txt