md5 base64 - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: md5 base64 (/thread-2018.html) |
md5 base64 - eljolot - 01-31-2013 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. RE: md5 base64 - epixoip - 01-31-2013 just convert it from base64 to hex. Code: epixoip@ike:~$ echo -n 'Jj09tHmY/X6IT10P70zJ/w==' | base64 -d | xxd -g 0 -ps RE: md5 base64 - eljolot - 01-31-2013 thnx a lot I didn't Know the commands to do it. (01-31-2013, 06:09 AM)epixoip Wrote: just convert it from base64 to hex. |