├── .idea ├── .name ├── encodings.xml ├── flowcontainer.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── 1592754322_clear.pcap ├── 1592993485_clear.pcap ├── 1592993485_noise.pcap ├── 1592993485_udp.pcap ├── LICENSE ├── README.md ├── __init__.py ├── dist ├── flowcontainer-1.1-py3.6.egg ├── flowcontainer-1.1.tar.gz ├── flowcontainer-1.2-py3.6.egg ├── flowcontainer-1.2.tar.gz ├── flowcontainer-2.1-py3.6.egg ├── flowcontainer-2.1.tar.gz ├── flowcontainer-2.2.tar.gz ├── flowcontainer-2.3-py3.6.egg ├── flowcontainer-2.3.tar.gz ├── flowcontainer-2.4.tar.gz ├── flowcontainer-2.5.tar.gz ├── flowcontainer-2.6.tar.gz ├── flowcontainer-3.0.tar.gz ├── flowcontainer-3.1.tar.gz ├── flowcontainer-3.10.tar.gz ├── flowcontainer-3.11.tar.gz ├── flowcontainer-3.12.tar.gz ├── flowcontainer-3.2.tar.gz ├── flowcontainer-3.3.tar.gz ├── flowcontainer-3.4.tar.gz ├── flowcontainer-3.5.tar.gz ├── flowcontainer-3.6.tar.gz ├── flowcontainer-3.7.tar.gz ├── flowcontainer-3.8.tar.gz └── flowcontainer-3.9.tar.gz ├── example.py ├── example_code ├── dns │ └── dns_basic_parser.py ├── easy_example.py ├── http │ ├── __init__.py │ └── http_basic_parser.py ├── parse_very_large_pcap.py └── ssl │ ├── __init__.py │ ├── easy_x509.py │ └── ssl_basic_parser.py ├── flowcontainer.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt ├── flowcontainer ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── extractor.cpython-36.pyc │ ├── flow_generator.cpython-36.pyc │ ├── flows.cpython-36.pyc │ └── reader.cpython-36.pyc ├── extractor.py ├── flow_generator.py ├── flowcontainer.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── flows.py ├── network_destination.py ├── reader.py └── split_pcap.py ├── ipsec.pcapng ├── l2tp.pcap ├── not_tcp_udp.pcap ├── pptp.pcap ├── requirements.txt ├── setup.py ├── ssh.pcap ├── ssl.pcapng └── tls.pcap /.idea/.name: -------------------------------------------------------------------------------- 1 | flowcontainer -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/flowcontainer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/flowcontainer.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /1592754322_clear.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/1592754322_clear.pcap -------------------------------------------------------------------------------- /1592993485_clear.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/1592993485_clear.pcap -------------------------------------------------------------------------------- /1592993485_noise.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/1592993485_noise.pcap -------------------------------------------------------------------------------- /1592993485_udp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/1592993485_udp.pcap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/flowcontainer-1.1-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-1.1-py3.6.egg -------------------------------------------------------------------------------- /dist/flowcontainer-1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-1.1.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-1.2-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-1.2-py3.6.egg -------------------------------------------------------------------------------- /dist/flowcontainer-1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-1.2.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.1-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.1-py3.6.egg -------------------------------------------------------------------------------- /dist/flowcontainer-2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.1.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.2.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.3-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.3-py3.6.egg -------------------------------------------------------------------------------- /dist/flowcontainer-2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.3.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.4.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.5.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-2.6.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.0.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.1.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.10.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.11.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.12.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.12.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.2.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.3.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.4.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.5.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.6.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.7.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.8.tar.gz -------------------------------------------------------------------------------- /dist/flowcontainer-3.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/dist/flowcontainer-3.9.tar.gz -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example.py -------------------------------------------------------------------------------- /example_code/dns/dns_basic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/dns/dns_basic_parser.py -------------------------------------------------------------------------------- /example_code/easy_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/easy_example.py -------------------------------------------------------------------------------- /example_code/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/http/__init__.py -------------------------------------------------------------------------------- /example_code/http/http_basic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/http/http_basic_parser.py -------------------------------------------------------------------------------- /example_code/parse_very_large_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/parse_very_large_pcap.py -------------------------------------------------------------------------------- /example_code/ssl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/ssl/__init__.py -------------------------------------------------------------------------------- /example_code/ssl/easy_x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/ssl/easy_x509.py -------------------------------------------------------------------------------- /example_code/ssl/ssl_basic_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/example_code/ssl/ssl_basic_parser.py -------------------------------------------------------------------------------- /flowcontainer.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer.egg-info/PKG-INFO -------------------------------------------------------------------------------- /flowcontainer.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /flowcontainer.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flowcontainer.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flowcontainer 2 | -------------------------------------------------------------------------------- /flowcontainer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__init__.py -------------------------------------------------------------------------------- /flowcontainer/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /flowcontainer/__pycache__/extractor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__pycache__/extractor.cpython-36.pyc -------------------------------------------------------------------------------- /flowcontainer/__pycache__/flow_generator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__pycache__/flow_generator.cpython-36.pyc -------------------------------------------------------------------------------- /flowcontainer/__pycache__/flows.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__pycache__/flows.cpython-36.pyc -------------------------------------------------------------------------------- /flowcontainer/__pycache__/reader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/__pycache__/reader.cpython-36.pyc -------------------------------------------------------------------------------- /flowcontainer/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/extractor.py -------------------------------------------------------------------------------- /flowcontainer/flow_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/flow_generator.py -------------------------------------------------------------------------------- /flowcontainer/flowcontainer.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/flowcontainer.egg-info/PKG-INFO -------------------------------------------------------------------------------- /flowcontainer/flowcontainer.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/flowcontainer.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /flowcontainer/flowcontainer.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flowcontainer/flowcontainer.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flowcontainer/flows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/flows.py -------------------------------------------------------------------------------- /flowcontainer/network_destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/network_destination.py -------------------------------------------------------------------------------- /flowcontainer/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/reader.py -------------------------------------------------------------------------------- /flowcontainer/split_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/flowcontainer/split_pcap.py -------------------------------------------------------------------------------- /ipsec.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/ipsec.pcapng -------------------------------------------------------------------------------- /l2tp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/l2tp.pcap -------------------------------------------------------------------------------- /not_tcp_udp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/not_tcp_udp.pcap -------------------------------------------------------------------------------- /pptp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/pptp.pcap -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.18.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/setup.py -------------------------------------------------------------------------------- /ssh.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/ssh.pcap -------------------------------------------------------------------------------- /ssl.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/ssl.pcapng -------------------------------------------------------------------------------- /tls.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmhIcoding/flowcontainer/HEAD/tls.pcap --------------------------------------------------------------------------------