Author | Post | ||
davs |
Hi, Does somebody know which type of hash is this: EPMxYZK4dXVBm57K0vmz7o3gKCYOZq2SXgUdnSyki8g= //(This is hash of plain 123456) aRJO50AA83KWsMLyYKBOJNzGeNjIXmEIf+XrGBFu53w= //(This is of plain char 'a') Hashes is always the same long. Thanks. |
||
30.01.2010 10:54:38 |
|
||
aceldama |
unless of course it's some kind of home-brew hash. you know, the type that adds the sum of all the characters together. 10f3316192b87575419b9ecad2f9b3ee8de028260e66ad925e051d9d2ca48bc8 69124ee74000f37296b0c2f260a04e24dcc678d8c85e61087fe5eb18116ee77c or maybe a typo? where'd you get it? |
||
30.01.2010 18:34:29 |
|
||
davs |
Hm, I doubt that is "home-made" hash, maybe I'm wrong but it seems to me that this is some type of 'standard' hash. I get it from one site and I need to reverse this hash y3yvCwgt7gb5XFY/wseQAIntyvBPw8Ap2fGHPHqkfFg= to plain text. |
||
30.01.2010 21:49:46 |
|
||
aceldama |
the reason i'm wondering is because google should know the standard "A" or "ABC" hash. like when you google "900150983cd24fb0d6963f7d28e17f72" you get that it's the MD5 of "abc", and it doesn't work on your hashes. that's why i'm guessing it must be a home-brew hash. am i making sense? |
||
Edited by aceldama on 30.01.2010 21:55:11 | |||
30.01.2010 21:54:11 |
|
||
davs |
Yes you are right. Now I need to find solution how to reverse it. |
||
30.01.2010 22:04:54 |
|
||
jacano |
Perhaps -> some_kind_gzinflate(base64_decode('data')) |
||
30.01.2010 23:59:16 |
|
||
harvestsnow |
It could be a salted standard hash, like sha256("GuE55MyS4l#dUD3" + input) . Thus you can produce unpredictable output with a reliable, heavily studied function. In that case, it's probably easier to find the salt than to cryptanalyse the input/hash couples. |
||
31.01.2010 16:23:34 |
|
||
davs |
I found it ! |
||
31.01.2010 21:54:50 |
|
||
jacano |
So, how was this hash generated? |
||
31.01.2010 21:57:36 |
|
||
davs |
http://php.net/manual/en/book.mcrypt.php |
||
31.01.2010 22:03:56 |
|