MD5 crash down
Myth
MD5 has been broken. It is safer not to use it.
Reality
FALSE.
Explanations
Collisions
The MD5 flaw found in the possibility of finding MD5 collisions (ie blocks of different data with the same MD5), which had never been done before.
Under fixed terms, to find such collisions required computing time beyond our reach.
Researchers have managed to find MD5 collisions, being a breakthrough in cryptanalysis.
However, it is impossible to boost data with MD5 accurate.
It is impossible for an "enemy" to create a file with the same MD5 as an existing file.
Rainbow-Tables
It also means that there is no need for using MD5 as rainbow-tables.
In practice
In practice, this is however not a problem.
To counter the risk of presence of invariants MD5, this can be done by using MD5 to SHA-1. Invariants are different, impossible to falsify both. You can also use SHA-256 or SHA-512 in place of (or with) MD5.
To counter the rainbow-tables, just add salt before: Instead of calculating MD5 (password), we calculate MD5 ( "foo" + password). This makes the rainbow-tables completely unusable for an attack.
However, for existing systems using MD5, it can be inconvenient, both for invariants and rainbow-tables which require systems update.