Do we know a MD5 collision exploiting PHP loose type comparision (0123e2 == 123e02 == 012300)?
Since PHP has loose type comparison, we have:
php -r ‘var_dump("1234e03"=="1234000");’
bool(true)
And since MD5 hashs are often reprensented as hexa string like 713f44b3d2c680df02eb5a0bde86fcd7
Are there two already kn… Continue reading Do we know a MD5 collision exploiting PHP loose type comparision (0123e2 == 123e02 == 012300)?