Rating:

# UTCTF 2022 Baby Shark (Category: Beginner)
The challenge is the following,

![Figure 1](img/challenge.png)

Here, we are given the file [baby_shark1.pcap](./baby_shark1.pcap).
The challenge description says `I think someone downloaded something from an http site.`, so we will look at the http traffic.

Opening this up on Wireshark shows the following,

![Figure 2](img/packet.png)

If we go to `File > Export Objects > HTTP`, and click on `Preview` for packet 15, we can see the flag,

![Figure 2](img/flag.png)

Therefore, the flag is,

`utflag{eye_c_what_u_c}`

Original writeup (https://github.com/LambdaMamba/CTFwriteups/tree/main/UTCTF_2022/beginner/baby_shark).