Just some reiteration, all MaNGOS releases hash passwords in the PostgreSQL DBs.
Went through the MaNGOS Zero repo on github to find out that the password is basically:
- Code: Select all
<? $pass = sha1(strtoupper($username) . ':' . strtoupper($password)); ?>
Pretty sure this forum runs on MyBB or IPBoard which is either md5, sha256, or bcrypt. Not sure.
Either way... md5 is broken and easy to crack, sha1 is easy to crack, sha256 getting somewhat more difficult, and bcrypt is pretty much the best choice here.
As for personal security, use a unique password on all services you register to. Nobody can guarantee whether or not the forum will be hacked although CloudFlare provides an exceptional Web Application Firewall (WAF) as well as DDoS mitigation. If you're not taking proper measures to secure your own machine(s), then you shouldn't think Nostalrius has anything to do with breaching any of your non-unique passwords.