Our charsets
LM (Lan Manager) (Microsoft Windows < XP)
- Full charset, 1-14 characters (maximum length for a LM password).
- Can crack 99.99% of all alpha-numeric-special-symbols LM passwords.
NTLM (Microsoft Windows Vista, 7, ..)
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
MD5
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
- Double MD5 (md5(md5(password))) also supported.
MD4
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
SHA-1
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
Mac OS X
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
WPA-WPA2-RSNA-PSK (Wifi Protected Access)
- Use of wordlists.
MYSQL (all version)
- Prior to MySQL 4.1 ("MySQL323"), password hashes computed are 16 bytes long.
- Can crack 100% of your MySQL323 hashes
- MySQL version upper than v4.1 are 40 bytes long
- Full alpha-numeric-space-special charset.
- Use of pre-calculated tables, wordlists and brute force.
- Recover MySQL passwords created with the command Password() :
mysql(v5)> SET PASSWORD FOR ''@'localhost' = PASSWORD('example'); mysql(v5)> select PASSWORD('example'); +-------------------------------------------+ | PASSWORD('example') | +-------------------------------------------+ | *57237BB49761F29AB9724BA084E811D70C12393D | +-------------------------------------------+ or mysql(v3)> SELECT PASSWORD('mypass'); +--------------------+ | PASSWORD('mypass') | +--------------------+ | 6f8c114b58f2ce9e | +--------------------+ - Note : Remove the star (*) when sending your hash.