Skip to content

Raw & unsalted hashes

How to identify and crack an MD2 hash

Identify an MD2 hash and crack it with ready-to-run hashcat and John the Ripper commands. Fast on a GPU.

John format md2

MD2 is an 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 MD2 entirely in your browser — your hash is never uploaded. A typical example looks like this:

8350e5a3e24c153df2275c9f80692773

Cracking MD2 with John the Ripper

John the Ripper can attack the same hash with the md2 format:

echo '8350e5a3e24c153df2275c9f80692773' > hash.txt && john --format=md2 --wordlist=/usr/share/wordlists/rockyou.txt hash.txt