> For the complete documentation index, see [llms.txt](https://ctf.zeyu2001.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ctf.zeyu2001.com/2021/inctf-2021/listen.md).

# Listen

## Challenge

The quieter you become, the more you are able to listen.

**Author:** [f4lc0n](https://twitter.com/theevilsyn)

## Solution

Upon connecting to the VPN, I started sniffing for packets using Wireshark (the challenge name kind of gave it away!).

![](/files/-MhEdQtFs2f5kki5EKkp)

172.30.0.8 is constantly trying to initiate connections to some seemingly random ports on our machine. Obviously, those ports aren't open, so our machine sends an RST, and no connection is established.

Listening on any of these ports gives us a lot of lorem ipsum text.

![](/files/-MhEeLiziv7f5JcGgqGw)

If we look at the statistics, we can see that while the ports are seemingly randomly chosen, two ports (31336 and 31337) are receiving way more traffic than the rest.

![](/files/-MhEe54R9LZVUc6jyRux)

I kept listening on port 31337, and eventually, the flag appeared in one of the messages.

![](/files/-MhEeJYSCj-ron8L63wb)

The flag is `inctf{s0_y0u_finally_d3cid3d_t0_listen!!}`
