Is MD5 really that bad?

Posted by Col. Shrapnel on Stack Overflow See other posts from Stack Overflow or by Col. Shrapnel
Published on 2010-05-04T19:10:45Z Indexed on 2010/05/04 19:18 UTC
Read the original article Hit count: 210

Filed under:
|
|

Everyone says that MD5 is "broken".
Though I have never seen a code that can show it's weakness.
So, I hope someone of local experts can prove it with simple test.

I have an MD5 hash c1e877411f5cb44d10ece283a37e1668
And a simple code to produce it

$salt="#bh35^&Res%";
$pass="***";
echo $hash=md5($salt.$pass);

So, the question is:
1. Is MD% really that bad?
2. If so, what's the pass behind the asterisks?

© Stack Overflow or respective owner

Related posts about md5

Related posts about php