Skip to content

Instantly share code, notes, and snippets.

@yohanes
Created October 26, 2014 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yohanes/c0cac9815ca7f6232445 to your computer and use it in GitHub Desktop.
Save yohanes/c0cac9815ca7f6232445 to your computer and use it in GitHub Desktop.
Extract data from pcap Challenge 2 HITB2014
f = open("c2.pcap", "r")
lines = f.readlines()
for l in lines:
if ("G01" in l):
print l[l.index("G01"):]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment