Hextroadinary
30 points Easy

Meet ROXy, a coder obsessed with being exclusively the worlds best hacker. She specializes in short cryptic hard to decipher secret codes. The below hex values for example, she did something with them to generate a secret code, can you figure out what? Your answer should start with 0x.

0xc4115 0x4cf8

Flag
Rating 4.45
5
4
3
2
1

Discussion

01110111 01100001 01110011 00100000 01100111 01101111 01101111 01100100 00100001

-1
0

Use XOR operator and send result in 16 base like 0x{result}

0

Use XOR operator and send result in 16 base like 0x{result}

0

I hate ROXy

2

print(hex(0xc4115 ^ 0x4cf8))

1
Protected
-1

She is ROXy, which backward is yXOR, and XOR is just binary operator. BInary - so you need binary data. Just remember that you need same length of both series of data, to use xor on pair ;)

-1

cool

-1

cool

-1

couldnt figure out what it was at first then read some comments to understand what it is

0