How to crack an MD5(base64_encode(md5)) password?
#1
Hi guys,
Please help me commands with hashcat to crack an MD5(base64_encode(md5)) passwords.
Thanks.
Ex: 1bf8fcac4763978543bddc06392ff733 => 12345
58bc55137ad85422546b70033e27b8d2 => 123456
Reply
#2
<file path to hashcat.exe> >hashcat.exe -a 3 -m 0 <file path to hash file> ?d?d?d?d?d?d?d?d

only use as many "d's" as needed for length of possible password
d represents digits as in 0123456789

use main wiki for cheat sheet for flags ex (-a flag is --attack mode followed by #3 means brute force

https://hashcat.net/wiki/doku.php?id=hashcat
Reply
#3
The length of base64(md5($pass)) is always 44 so there would be integer overflow error. You can request adding this algorithm to hashcat here
Reply