đźš© Challenge Overview
- Platform/Event: Google CTF 2025
- Difficulty: Easy
- Points: 100
- Solves: 580
- Category: Forensics
- Tags: PCAP, Wireshark, TCP Stream, File Carving
📝 Description
A network PCAP file containing suspicious port scanning and TCP streams. Locate the payload transmission stream and carve out the hidden files.
đź’ˇ Solution / Approach
-
Open the PCAP file in Wireshark. Filter by
httportcp.port == 80to isolate web traffic. -
Locate a large POST request transferring binary data: stream index 14.
-
Right-click, select “Follow TCP Stream”, view data as “Raw”, and click “Save as…” to save it as
transfer.bin. -
Run
binwalk -e transfer.binto unpack the zipped file containing the flag.