Bit Collider
~# cat Question
Hash collisions!
FILE: app.py
app.py
Finding the hash collision
In short, this challenge required us to find two hashes that are the same from different input bytes A.K.A hash collisions.
m2
is derived fromm1
by XORing with a constant0x40000000
. This means that you need to find anm1
such thatm2 = m1 ^ 0x40000000
results in a different input producing the same hash.You can achieve this by choosing
m1
such that its long integer value XORed with0x40000000
produces the same hash value asm1
.
Flag: LNC24{b1twI5e_aNd_i5_jU5t_b1tm4sKiNg_98bd61c32def}
Last updated