2、 Open the text file and search on the host name of the database you want to recover the password for
3、 A couple lines below the host name is the encoded password. It’ll look something like: 755A5A585C3D8141. Keep this handy.
<!doctype html>
<html>
<body>
<script>
function heidiDecode(hex) {
var str = '';
var shift = parseInt(hex.substr(-1));
hex = hex.substr(0, hex.length - 1);
for (var i = 0; i < hex.length; i += 2) str += String.fromCharCode(parseInt(hex.substr(i, 2), 16) - shift); return str; } document.write(heidiDecode('[ENCODED_PASSWORD]')); </script>
</body>
</html>