Hacking Series Part 12

Challenge: vault-door-6

if (((passBytes[i] ^ 0x55) — myBytes[i]) != 0)
Bitwise xor operation.
X ^ Y = Z   means   Z ^ Y = X
(passBytes[i] ^ 0x55) — myBytes[i] != 0
passBytes[i] ^ 0x55 = myBytes[i]
myBytes[i] ^ 0x55 = passBytes[i]
picoCTF{n0t_mUcH_h4rD3r_tH4n_x0r_95be5dc}

--

--

I like to write.

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store