md5 base64
#1
I was wondering how to decrypt and md5base64. using an normal decoder for text strings works not properly and in hashcat As far I see there is no mode like in sha-1.

{MD5}Jj09tHmY/X6IT10P70zJ/w==

or maybe is a mode to put the hash in that way?

thnx.
#2
just convert it from base64 to hex.

Code:
epixoip@ike:~$ echo -n 'Jj09tHmY/X6IT10P70zJ/w==' | base64 -d | xxd -g 0 -ps
263d3db47998fd7e884f5d0fef4cc9ff
#3
Wink 
thnx a lot Big Grin I didn't Know the commands to do it.
(01-31-2013, 06:09 AM)epixoip Wrote: just convert it from base64 to hex.

Code:
epixoip@ike:~$ echo -n 'Jj09tHmY/X6IT10P70zJ/w==' | base64 -d | xxd -g 0 -ps
263d3db47998fd7e884f5d0fef4cc9ff