View Single Post
Posts: 93 | Thanked: 283 times | Joined on Jul 2016
#15
Originally Posted by pichlo View Post
Are you sure? I though SHA hashes consist of hexadecimal characters...
You mean "common" SHA512 which is [a-f0-9]{128} string but this is a Unix SHA512 implementation produced by crypt() function. Unix / crypt() type hashes look like "$x$yyyyyyy$zzzzzz...zzzzz" where "x" is a hash type, "yyyyyyyy" is a salt, and "zzz......zzz" is a hash string itself. You may already seen something like "$1$dh8cho7m$XMuMathohL8eek8yaLG9P0T/" which is a Unix MD5 hash while "common" MD5 hash is a [a-f0-9]{32} string. More info: http://man7.org/linux/man-pages/man3/crypt.3.html

Originally Posted by pichlo View Post
Try cutting it at the dashes:
Code:
RLcO7J4z0W4MHDebtaiRMu6IJ+M=
decodes to:
Code:
44 B7 0E EC 9E 33 D1 6E 0C 1C 37 9B B5 A8 91 32 
EE 88 27 E3
Wat
 

The Following 3 Users Say Thank You to meego_leenooks1 For This Useful Post: