What kind of hash is this? - 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: What kind of hash is this? (/thread-1631.html) |
What kind of hash is this? - alzzac - 10-08-2012 Can anybody tell me what hash type is this hash? 3c4f5d7e3864b959XXXXXXXXXXXXXXXX:Z9tUX4Cc Can it be cracked with hashcat? RE: What kind of hash is this? - epixoip - 10-08-2012 appears to be salted md5, but it's impossible to know precisely which algorithm was used to create it without knowing where it came from or having the source. could be md5(salt.pass), md5(pass.salt), md5(md5(salt).pass), md5(md5(salt).md5(pass)), so on and so forth. you'll have to use exhaustive trial-and-error unless you can determine its origin. RE: What kind of hash is this? - alzzac - 10-08-2012 (10-08-2012, 06:08 AM)epixoip Wrote: appears to be salted md5, but it's impossible to know precisely which algorithm was used to create it without knowing where it came from or having the source. could be md5(salt.pass), md5(pass.salt), md5(md5(salt).pass), md5(md5(salt).md5(pass)), so on and so forth. you'll have to use exhaustive trial-and-error unless you can determine its origin. I found this hash from Oracle 10g version, I guess it used the spring security algorithm to do the hash. Is it helpful? RE: What kind of hash is this? - epixoip - 10-08-2012 it may have been in an oracle 10g database, but that's not an oracle 10g hash. if it was hashed with Spring Security then it's likely md5(pass.salt) RE: What kind of hash is this? - mastercracker - 10-09-2012 This definitely looks like MyBB hash since both the hash and salt follow their usual format. The right algorithm for it is -m 2811 which md5(md5($salt).md5($pass)). RE: What kind of hash is this? - alzzac - 10-12-2012 thank you for your reply mastercracker. I have another hash that I can't find out what is the exact algorithm it used. Can you take a look at it? Hash: Lw7Qe2Cn+jI= RE: What kind of hash is this? - atom - 10-12-2012 The char = on the end mostly points to Base64 |