This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import subprocess | |
import pandas as pd | |
from StringIO import StringIO | |
OPTIONS = [ | |
'tcp.desegment_tcp_streams:FALSE', | |
'ssl.desegment_ssl_records:FALSE', | |
'ssl.desegment_ssl_application_data:FALSE', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
import commands | |
import platform | |
import re | |
import sys | |
import urllib | |
from genericpath import isfile | |
from hashlib import sha256 | |
from os import remove | |
from os.path import dirname, abspath, join, isdir |