2014 CSAW CTF - Networking 100 - Big Data

  1. use chaosreader tool to process pcap.pcapng file produces:
  2. 	pcap.pcapng-chaosreader
    	├── getpost.html
    	├── httplog.text
    	├── image.html
    	├── index.html <= entry point to view results
    	├── index.text
    	...
    	├── session_0089.telnet.html
    	├── session_0089.telnet.replay
    	...
    
  3. search through all html output for flag
  4. for f in pcap.pcapng-chaosreader/*.html; do cat "${f}" | w3m -dump -T text/html "${f}"; done | egrep "flag{"
    
  5. ..Password: flag{bigdataisaproblemnotasolution}