Identifying hash type
#3
forumhero, i guess you missed

(01-14-2015, 10:52 PM)wflme Wrote: Obfuscated as per the forum rules.

wflme, will be nearly impossible to know with any degree of certainty without having the source. But, it is possible that it is something simple like base64(md5_raw(pass)), then s/=//g

Are they all precisely 22 chars in length?

Do you see X03MO1qnZdYdgyfeuILPmQ in the list anywhere?

Actually a faster way to test might be to just do something like:

Code:
while read h; do echo "$h==" | base64 -d | xxd -p; done < hashlist > new_hashlist

Then try cracking new_hashlist as -m 0 and see what happens.


Messages In This Thread
Identifying hash type - by wflme - 01-14-2015, 10:52 PM
RE: Identifying hash type - by forumhero - 01-14-2015, 11:59 PM
RE: Identifying hash type - by epixoip - 01-15-2015, 12:13 AM
RE: Identifying hash type - by wflme - 01-15-2015, 10:49 PM
RE: Identifying hash type - by epixoip - 01-16-2015, 09:12 AM
RE: Identifying hash type - by undeath - 01-17-2015, 12:07 PM