Packets Primer
Description
Download the packet capture file and use packet analysis software to find the flag.
Solving
- We got a pcap file... lets look into it...
 - First lets check for low hanging fruits... with 
strings- ah there is the flag 🙂 - The flag is in plainsight!
 - Just remove the whitespaces
 - You can use 
tr -d ' 'to remove the whitespaces 
#!/bin/bash
echo "Getting flag from pcap file..."
strings network-dump.flag.pcap | grep "p i c o"| tr -d ' '
                                        
                    
                    
                    
                    
                