Examples of hash in common CMS systems
CMS system | Hashing algorithm |
Joomla >=1.0.13 | md5($pass.$salt) |
IPB 2.x.x. | md5(md5($salt).md5($pass)) |
vBulletin < v3.8.5 | md5(md5($pass).$salt) |
DataLife Engine | md5(md5($pass)) |
osCommerce | md5($salt.$pass) |
SMF 1.1.x. | sha1($username.$pass) |
WordPress >=2.6.2 | md5($wordpress) |
PhpBB >=3 | md5($phpbb3) |
vBulletin > v3.8.5 | md5(md5($pass).$salt) |
MyBB < 1.2 | md5(md5($salt).$pass) |
MyBB > 1.2 | md5(md5($salt).md5($pass)) |
SMF 2.0.x Previous | sha1($username.$pass) |
Woltlab BB | sha1($salt.sha1($salt.sha1($pass))) |
YaBB | md5(HMAC) |
RAdmin v2.x | RAdmin v2.x |
Radiant | sha1(sha1($pass)) |
PunBB 1.3.x | md5($salt.md5($pass)) sha1($salt.sha1($pass)) |
TorrentStrike v0.4 | md5($salt.$pass.$salt) |
WBNews | md5($pass.$salt) |
WWWThreads | DES(Unix) |
Pligg CMS | sha1($salt.$pass) |
RunCMS | md5($pass) sha1($username.$pass) |
Lineage-2 Java Server | sha1(Base64) |