├── .gitignore ├── LICENSE ├── README.md ├── examples ├── bigresponse.fs ├── dns-request.fs ├── http-get.fs ├── interlaced.fs ├── internet-exploder.fs ├── ipv6-http-get.fs ├── suricata-ids.org.html ├── tls_handshake.fs └── vaporware.fs ├── requirements.txt ├── scripts └── make_pcap_poc.py ├── setup.cfg ├── setup.py └── src ├── __init__.py ├── __main__.py └── flowsynth.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/README.md -------------------------------------------------------------------------------- /examples/bigresponse.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/bigresponse.fs -------------------------------------------------------------------------------- /examples/dns-request.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/dns-request.fs -------------------------------------------------------------------------------- /examples/http-get.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/http-get.fs -------------------------------------------------------------------------------- /examples/interlaced.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/interlaced.fs -------------------------------------------------------------------------------- /examples/internet-exploder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/internet-exploder.fs -------------------------------------------------------------------------------- /examples/ipv6-http-get.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/ipv6-http-get.fs -------------------------------------------------------------------------------- /examples/suricata-ids.org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/suricata-ids.org.html -------------------------------------------------------------------------------- /examples/tls_handshake.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/tls_handshake.fs -------------------------------------------------------------------------------- /examples/vaporware.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/examples/vaporware.fs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | scapy>=2.4.0 2 | argparse 3 | -------------------------------------------------------------------------------- /scripts/make_pcap_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/scripts/make_pcap_poc.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/src/__main__.py -------------------------------------------------------------------------------- /src/flowsynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secureworks/flowsynth/HEAD/src/flowsynth.py --------------------------------------------------------------------------------