Posts: 88
	Threads: 16
	Joined: Nov 2012
	
	
 
	
	
		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.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 2,935
	Threads: 12
	Joined: May 2012
	
	
 
	
	
		just convert it from base64 to hex.
Code:
epixoip@ike:~$ echo -n 'Jj09tHmY/X6IT10P70zJ/w==' | base64 -d | xxd -g 0 -ps
263d3db47998fd7e884f5d0fef4cc9ff
 
 
	
	
	
		
	Posts: 88
	Threads: 16
	Joined: Nov 2012
	
	
 
	
		
		
 01-31-2013, 09:22 AM 
(This post was last modified: 01-31-2013, 09:22 AM by eljolot.)
 
		01-31-2013, 09:22 AM 
(This post was last modified: 01-31-2013, 09:22 AM by eljolot.)
		
	 
	
		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.
Code:
epixoip@ike:~$ echo -n 'Jj09tHmY/X6IT10P70zJ/w==' | base64 -d | xxd -g 0 -ps
263d3db47998fd7e884f5d0fef4cc9ff