Vault door 6

This vault uses an XOR encryption scheme. If X ^ Y = Z, then Z ^ Y = X. Write a program that decrypts the flag based on this fact.

Analysis:

Program does a basic XOR with byte "0x55". To get the original characters we can just XOR the result again with "0x55".

Solution:

Last updated