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

pleasee give me the correct answerss

0
Protected
0

Hint https://rb.gy/p4ru8u

-2

this did not work on cyberchef. for the love of god use python

0

interesting and witty

0

Python3: print(hex(0xc4115 ^ 0x4cf8)) CTFlearn{result}

-4

That was fun!

0
Protected
0

Easy to solve with Python code

The ^ operator in Python represents the bitwise XOR operation. When applied to two numbers, it performs the XOR operation on each corresponding pair of bits. Here's how it works:

0xc4115 -> 11000001000100010101 (binary)

0x4cf8 -> 0100110011111000 (binary)

XOR ( ^ )

Result -> 10001101111010010101 (binary)

When you use the hex() function to print the result in hexadecimal format, it converts the binary result to its hexadecimal representation:

10001101111010010101 (binary) -> The Flag (hexadecimal)

So, print(hex(0xc4115 ^ 0x4cf8)) will output The Flag.

11
Protected
1