hashcat Forum
Custom algorithm - 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: Custom algorithm (/thread-2410.html)



Custom algorithm - tz3500 - 06-27-2013

I have a password and the corresponding hash. It is a 32 character hash that looks like md5 but I am positive it is not md5 since no md5 generator generates the correct password. Is there any way to identify the algorithm used if I have the password and hash?


RE: Custom algorithm - unix-ninja - 06-27-2013

It could be salted in some way.
If you have access to the source, that would be your best bet.


RE: Custom algorithm - tz3500 - 06-27-2013

Where would the salts generally be located? I have access to his mysql server but in the members column there is only member id, email, password, and date registered. The guy who setup the mysql server is no longer around.


RE: Custom algorithm - epixoip - 06-28-2013

as unix-ninja suggested, use the source to find out how the hash is created.


RE: Custom algorithm - eljolot - 07-02-2013

Usually the source code that generates the hashes is in an php file and should have something like md5(md5($user).$mail)