What kind of hash is this?
#6
This is interesting, I compared the hashes of admin/root, and found that the first 21 characters (not counting "_encrypted_" are unique, but the last 22 characters (not counting "=") are absolutely identical. Is it possible that they have just added thoose characters at the end to make it harder to crack? I don't get why they would do it though, as it's very easy to spot.

Code:
root
_encrypted_ TKrP****eG7tXkKbe0DOL QAAAABfQUxMAAAAIAAAACE=

admin (password is "password1")
_encrypted_ wOs0DDgsSDMJ6LeE5/iKB QAAAABfQUxMAAAAIAAAACE=

Decoding the unique string in root on base64decode.org actually returns 9 completely random characters, but reencoding that string again gives a diffrent base64 string. So it seems like it's not decoding correctly.
Looking over "example hashes", it looks similar to Cisco hashes

Code:
2400     Cisco-PIX MD5        dRRVnUmUHXOTt9nk
5700     Cisco-IOS SHA256     2btjjy78REtmYkkW0csHUbJZOstRXoWdX1mGrmmfeHI


Messages In This Thread
What kind of hash is this? - by Znerox - 09-21-2014, 08:41 PM
RE: What kind of hash is this? - by magnum - 09-22-2014, 01:37 AM
RE: What kind of hash is this? - by Znerox - 09-22-2014, 07:32 AM
RE: What kind of hash is this? - by atom - 09-22-2014, 11:50 AM
RE: What kind of hash is this? - by philsmd - 09-22-2014, 12:18 PM
RE: What kind of hash is this? - by Znerox - 09-22-2014, 04:59 PM
RE: What kind of hash is this? - by philsmd - 09-22-2014, 05:43 PM
RE: What kind of hash is this? - by Znerox - 09-22-2014, 07:35 PM
RE: What kind of hash is this? - by magnum - 09-24-2014, 04:17 AM