Roy's Randomness

Problem

Roy found some suspicious network traffic, wireshark shows so many errors with it! Can you figure out what's happening

Solution

This is a TCP covert channel, using morse code.

The PSH packets are sent at regular intervals, serving as delimiters.

On the other hand, the RST and SYN packets act as '1' and '0' bits in the message. Using the international morse code, RST -> - and SYN -> ., we can obtain the message.

Decoding from hex gives us the flag: UMDCTF-{r0y_f0und_m0r53}

Last updated

Was this helpful?