Skip to content

Instantly share code, notes, and snippets.

@yohanes
Created October 26, 2014 11:46
Embed
What would you like to do?
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