aboutsummaryrefslogtreecommitdiff
path: root/reversing_tools/parse_pcap.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2016-08-16 20:36:59 -0700
committerMike Crute <mcrute@gmail.com>2016-08-16 20:36:59 -0700
commit39961246ae3c2c770e7dcd40f014510b9560c624 (patch)
tree4d0b7d2dd1c97796f5ef340848b8e8bd872eb114 /reversing_tools/parse_pcap.py
parent0eff7800aeb524f490ddaf58282fed46a4d933b5 (diff)
downloadubntmfi-39961246ae3c2c770e7dcd40f014510b9560c624.tar.bz2
ubntmfi-39961246ae3c2c770e7dcd40f014510b9560c624.tar.xz
ubntmfi-39961246ae3c2c770e7dcd40f014510b9560c624.zip
Add flow capture parsing
Diffstat (limited to 'reversing_tools/parse_pcap.py')
-rwxr-xr-xreversing_tools/parse_pcap.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/reversing_tools/parse_pcap.py b/reversing_tools/parse_pcap.py
index c29c1d2..ed6f465 100755
--- a/reversing_tools/parse_pcap.py
+++ b/reversing_tools/parse_pcap.py
@@ -1,5 +1,8 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2 2
3import sys, os
4sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'python'))
5
3import dpkt 6import dpkt
4import json 7import json
5from cStringIO import StringIO 8from cStringIO import StringIO