Password in database is: md5 has with left salt defined in auth opt
E.g. you have salt 2011 and your password is "admin"
You need to md5 hash "2011admin" which would be "613b5247e3398350918cb622a3ec19e9"
(You either use online md5 hasher or powershell)
Or, most preferably, linux terminal, which is even simpler:
Both would give you same result: 613b5247e3398350918cb622a3ec19e9
E.g. you have salt 2011 and your password is "admin"
You need to md5 hash "2011admin" which would be "613b5247e3398350918cb622a3ec19e9"
(You either use online md5 hasher or powershell)
Code:
$someString = "2011admin" $md5 = new-object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider $utf8 = new-object -TypeName System.Text.UTF8Encoding $hash = ([System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($someString)))).ToLower() -replace '-', '' echo $hash
Code:
echo -n "2011admin" | md5sum