hashcat Forum
md5(base64_encode($pass)) in hashcat - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: md5(base64_encode($pass)) in hashcat (/thread-7911.html)



md5(base64_encode($pass)) in hashcat - FRIMAN - 10-30-2018

Hi!
How to decodeĀ md5(base64_encode($pass)) in hashcat?
I don't find this algoritm

Example:
6053088d05b02e35856f3aa3ce8b1c15:qawsed

qawsed in base64 = cWF3c2Vk
cWF3c2Vk in md5 = 6053088d05b02e35856f3aa3ce8b1c15


RE: md5(base64_encode($pass)) in hashcat - undeath - 10-30-2018

Either you implement a kernel on your own for such a hash mode or you do the encoding externally and pipe in the already base64-encoded words in a0 mode, but this will cost quite some performance and won't allow you to use any of hashcat's integrated attack features.


RE: md5(base64_encode($pass)) in hashcat - FRIMAN - 10-30-2018

(10-30-2018, 09:42 AM)undeath Wrote: Either you implement a kernel on your own for such a hash mode or you do the encoding externally and pipe in the already base64-encoded words in a0 mode, but this will cost quite some performance and won't allow you to use any of hashcat's integrated attack features.

how make kernel?


RE: md5(base64_encode($pass)) in hashcat - DanielG - 10-30-2018

https://github.com/hashcat/hashcat/tree/master/OpenCL read, learn, edit, use