forumhero, i guess you missed
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:
Then try cracking new_hashlist as -m 0 and see what happens.
(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.