01-10-2018, 02:30 PM
And addition. What I did try is this:
echo HAAAAEGXXXXXXXXXXXXXXXXXXXXh+b6BtQtOkonrbeI= | base64 -d | xxd -p -c 40 | sed 's/.\{40\}/&:/'
1c0000004d5546dbb12XXXXXXXXe94dcea77dacc:c0da91d0XXXXXXXXb7b81
So based on my assumptions, 1c0000004 is probably the salt, as this is the same string for all password when the base64 is reversed, converted to hex and added a : after 40 signs. Not sure if I made this correct though.
echo HAAAAEGXXXXXXXXXXXXXXXXXXXXh+b6BtQtOkonrbeI= | base64 -d | xxd -p -c 40 | sed 's/.\{40\}/&:/'
1c0000004d5546dbb12XXXXXXXXe94dcea77dacc:c0da91d0XXXXXXXXb7b81
So based on my assumptions, 1c0000004 is probably the salt, as this is the same string for all password when the base64 is reversed, converted to hex and added a : after 40 signs. Not sure if I made this correct though.