MD5 hash collision example
The Endeavour 2024-03-20
Marc Stevens gave an example of two alphanumeric strings that differ by only one byte that have the same MD5 hash value. It may seem like beating a dead horse to demonstrate weaknesses in MD5, but it’s instructive to study the flaws of broken methods. And despite the fact that MD5 has been broken for years, lawyers still use it.
The example claims that
TEXTCOLLBYfGiJUETHQ4hAcKSMd5zYpgqf1YRDhkmxHkhPWptrkoyz28wnI9V0aHeAuaKnak
and
TEXTCOLLBYfGiJUETHQ4hEcKSMd5zYpgqf1YRDhkmxHkhPWptrkoyz28wnI9V0aHeAuaKnak
have the same hash value.
This raises several questions.
Are these two strings really different, and if so, how do they differ? If you stare at the strings long enough you can see that they do indeed differ by one character. But how could you compare long strings like this in a more automated way?
How can I compute the MD5 hash values of the strings so I can verify that they are the same?
The following Python code addresses the questions above.
from hashlib import md5 from difflib import ndiff def showdiff(a, b): for i,s in enumerate(ndiff(a, b)): if s[0]==' ': continue elif s[0]=='-': print(u'Delete "{}" from position {}'.format(s[-1],i)) elif s[0]=='+': print(u'Add "{}" to position {}'.format(s[-1],i)) a = "TEXTCOLLBYfGiJUETHQ4hAcKSMd5zYpgqf1YRDhkmxHkhPWptrkoyz28wnI9V0aHeAuaKnak" b = "TEXTCOLLBYfGiJUETHQ4hEcKSMd5zYpgqf1YRDhkmxHkhPWptrkoyz28wnI9V0aHeAuaKnak" showdiff(a, b) ahash = md5(a.encode('utf-8')).hexdigest() bhash = md5(b.encode('utf-8')).hexdigest() assert(ahash == bhash)
The basis of the showdiff
function was from an answer to a question on Stack Overflow.
The output of the call to showdiff
is as follows.
Delete "A" from position 21 Add "E" to position 22
This means we can form string b
from a
by changing the ‘A’ in position 21 to an ‘E’. There was only one difference between the two strings in this example, but showdiff
could be useful for understanding more complex differences.
The assert statement passes because both strings hash to faad49866e9498fc1719f5289e7a0269.
Related posts
- Fine-grained file differences
- Levenshtein distance
- Notes on computing hash functions
- Probability of hash collisions