This program is designated to recover passwords for different types of hashes. The program currently supports about 30 types of hashes, and new ones can easily be added through writing own external hashing DLL-module. Actual list of modules available can be found on the forum of the program. Maximal number of hashes to work with at the same time is 64.
Built-in types of hashes:
MySQL
MySQL5
DES (Unix)
MD4
MD4 (Base64)
MD4 (HMAC)
MD5
MD5 (Base64)
MD5 (HMAC)
MD5 (Unix)
MD5 (APR)
SHA-1
SHA-1 (Base64)
SHA-1 (HMAC)
Domain Cached Credentials
Types of hashes used by some programs (like forums) on PMP, available as external modules:
md5($pass.$salt)
md5($salt.$pass)
md5(md5($pass))
md5($salt.$pass.$salt)
md5(md5($pass).$salt)
md5(md5($salt).$pass)
md5($salt.md5($salt.$pass))
md5(md5($salt).md5($pass))
sha1($username.$pass)
Types of hashes available through external modules written by third party developers:
MD2
Haval 128
MS SQL
Oracle DES
Oracle SHA-1
RipeMD 128
etc.
Note: additional hashing modules are located in the \Modules directory of the program archive and can be imported through program options menu ("External modules" tab).