ctf-writeup/VU CYBERTHON 2023/Blue Baby Shark/README.md

18 lines
640 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Blue Baby Shark
> I got recomendation from one of our common acquaintance. Im a new into all of this CTF stuff. I g...
## About the Challenge
We have been given a pcapng file and we need to find the flag there (You can find the file [here](Blue%20Baby%20Shark.pcapng))
## How to Solve?
I open the file using `Wireshark` and using `frame contains "vu"` filters to find the packet that contains `vu` string. And then there are 4 packets that contains `vu` string.
![filters](images/filters.png)
I press the `Follow TCP` on packet 32835 and we will find the flag on `vu` user
![flag](images/flag.png)
```
VU{b4by_5h4rk_fly_4w4y}
```