├── .github └── workflows │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── bin ├── idstools-dumpdynamicrules ├── idstools-eve2pcap ├── idstools-gensidmsgmap ├── idstools-rulecat ├── idstools-rulemod ├── idstools-u2eve ├── idstools-u2fast ├── idstools-u2json └── idstools-u2spewfoo ├── doc ├── Makefile ├── _static │ └── .gitignore ├── api-rules.rst ├── api.rst ├── apidoc │ ├── idstools.maps.rst │ ├── idstools.net.rst │ ├── idstools.packet.rst │ ├── idstools.rst │ ├── idstools.rule.rst │ ├── idstools.rulecat.configs.rst │ ├── idstools.rulecat.loghandler.rst │ ├── idstools.rulecat.rst │ ├── idstools.scripts.dumpdynamicrules.rst │ ├── idstools.scripts.eve2pcap.rst │ ├── idstools.scripts.gensidmsgmap.rst │ ├── idstools.scripts.rst │ ├── idstools.scripts.rulecat.rst │ ├── idstools.scripts.rulemod.rst │ ├── idstools.scripts.u2eve.rst │ ├── idstools.scripts.u2fast.rst │ ├── idstools.scripts.u2json.rst │ ├── idstools.scripts.u2spewfoo.rst │ ├── idstools.snort.rst │ ├── idstools.suricata.rst │ ├── idstools.unified2.rst │ ├── idstools.util.rst │ └── modules.rst ├── conf.py ├── index.rst ├── library.rst ├── maps.rst ├── tools.rst ├── tools │ ├── dumpdynamicrules.rst │ ├── eve2pcap.rst │ ├── gensidmsgmap.rst │ ├── rulecat.rst │ ├── u2eve.rst │ ├── u2fast.rst │ ├── u2json.rst │ └── u2spewfoo.rst └── unified2.rst ├── examples └── parse-rule-file.py ├── idstools ├── __init__.py ├── compat │ ├── __init__.py │ ├── argparse │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ └── argparse.py │ └── ordereddict.py ├── maps.py ├── net.py ├── packet.py ├── rule.py ├── rulecat │ ├── __init__.py │ ├── configs │ │ ├── __init__.py │ │ ├── disable.conf │ │ ├── drop.conf │ │ ├── enable.conf │ │ ├── modify.conf │ │ └── threshold.in │ ├── extract.py │ └── loghandler.py ├── scripts │ ├── __init__.py │ ├── dumpdynamicrules.py │ ├── eve2pcap.py │ ├── gensidmsgmap.py │ ├── rulecat.py │ ├── rulemod.py │ ├── u2eve.py │ ├── u2fast.py │ ├── u2json.py │ └── u2spewfoo.py ├── snort.py ├── suricata.py ├── unified2.py └── util.py ├── requirements.txt ├── setup.py ├── tests ├── NPD_2_1_2_1_Type_0.pcap ├── bench-rule-parse.py ├── classification.config ├── emerging-current_events.rules ├── emerging.rules.tar.gz ├── emerging.rules.tar.gz.md5 ├── emerging.rules.zip ├── gen-msg.map ├── ipv6-alert.unified2 ├── merged.log ├── multi-record-event.log ├── rule-with-unicode.rules ├── sid-msg-v2.map ├── sid-msg.map ├── test_classificationmap.py ├── test_net.py ├── test_packet.py ├── test_rule.py ├── test_rulecat.py ├── test_signaturemap.py ├── test_snort.py ├── test_suricata.py ├── test_unified2.py └── test_util.py └── tox.ini /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/README.rst -------------------------------------------------------------------------------- /bin/idstools-dumpdynamicrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-dumpdynamicrules -------------------------------------------------------------------------------- /bin/idstools-eve2pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-eve2pcap -------------------------------------------------------------------------------- /bin/idstools-gensidmsgmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-gensidmsgmap -------------------------------------------------------------------------------- /bin/idstools-rulecat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-rulecat -------------------------------------------------------------------------------- /bin/idstools-rulemod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-rulemod -------------------------------------------------------------------------------- /bin/idstools-u2eve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-u2eve -------------------------------------------------------------------------------- /bin/idstools-u2fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-u2fast -------------------------------------------------------------------------------- /bin/idstools-u2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-u2json -------------------------------------------------------------------------------- /bin/idstools-u2spewfoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/bin/idstools-u2spewfoo -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/api-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/api-rules.rst -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.maps.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.net.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.packet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.packet.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.rule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.rule.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.rulecat.configs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.rulecat.configs.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.rulecat.loghandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.rulecat.loghandler.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.rulecat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.rulecat.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.dumpdynamicrules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.dumpdynamicrules.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.eve2pcap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.eve2pcap.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.gensidmsgmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.gensidmsgmap.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.rulecat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.rulecat.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.rulemod.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.rulemod.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.u2eve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.u2eve.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.u2fast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.u2fast.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.u2json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.u2json.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.scripts.u2spewfoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.scripts.u2spewfoo.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.snort.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.snort.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.suricata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.suricata.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.unified2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.unified2.rst -------------------------------------------------------------------------------- /doc/apidoc/idstools.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/idstools.util.rst -------------------------------------------------------------------------------- /doc/apidoc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/apidoc/modules.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/library.rst -------------------------------------------------------------------------------- /doc/maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/maps.rst -------------------------------------------------------------------------------- /doc/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools.rst -------------------------------------------------------------------------------- /doc/tools/dumpdynamicrules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/dumpdynamicrules.rst -------------------------------------------------------------------------------- /doc/tools/eve2pcap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/eve2pcap.rst -------------------------------------------------------------------------------- /doc/tools/gensidmsgmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/gensidmsgmap.rst -------------------------------------------------------------------------------- /doc/tools/rulecat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/rulecat.rst -------------------------------------------------------------------------------- /doc/tools/u2eve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/u2eve.rst -------------------------------------------------------------------------------- /doc/tools/u2fast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/u2fast.rst -------------------------------------------------------------------------------- /doc/tools/u2json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/u2json.rst -------------------------------------------------------------------------------- /doc/tools/u2spewfoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/tools/u2spewfoo.rst -------------------------------------------------------------------------------- /doc/unified2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/doc/unified2.rst -------------------------------------------------------------------------------- /examples/parse-rule-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/examples/parse-rule-file.py -------------------------------------------------------------------------------- /idstools/__init__.py: -------------------------------------------------------------------------------- 1 | version = "0.6.5" 2 | -------------------------------------------------------------------------------- /idstools/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idstools/compat/argparse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/compat/argparse/LICENSE.txt -------------------------------------------------------------------------------- /idstools/compat/argparse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idstools/compat/argparse/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/compat/argparse/argparse.py -------------------------------------------------------------------------------- /idstools/compat/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/compat/ordereddict.py -------------------------------------------------------------------------------- /idstools/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/maps.py -------------------------------------------------------------------------------- /idstools/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/net.py -------------------------------------------------------------------------------- /idstools/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/packet.py -------------------------------------------------------------------------------- /idstools/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rule.py -------------------------------------------------------------------------------- /idstools/rulecat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idstools/rulecat/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/__init__.py -------------------------------------------------------------------------------- /idstools/rulecat/configs/disable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/disable.conf -------------------------------------------------------------------------------- /idstools/rulecat/configs/drop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/drop.conf -------------------------------------------------------------------------------- /idstools/rulecat/configs/enable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/enable.conf -------------------------------------------------------------------------------- /idstools/rulecat/configs/modify.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/modify.conf -------------------------------------------------------------------------------- /idstools/rulecat/configs/threshold.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/configs/threshold.in -------------------------------------------------------------------------------- /idstools/rulecat/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/extract.py -------------------------------------------------------------------------------- /idstools/rulecat/loghandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/rulecat/loghandler.py -------------------------------------------------------------------------------- /idstools/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /idstools/scripts/dumpdynamicrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/dumpdynamicrules.py -------------------------------------------------------------------------------- /idstools/scripts/eve2pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/eve2pcap.py -------------------------------------------------------------------------------- /idstools/scripts/gensidmsgmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/gensidmsgmap.py -------------------------------------------------------------------------------- /idstools/scripts/rulecat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/rulecat.py -------------------------------------------------------------------------------- /idstools/scripts/rulemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/rulemod.py -------------------------------------------------------------------------------- /idstools/scripts/u2eve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/u2eve.py -------------------------------------------------------------------------------- /idstools/scripts/u2fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/u2fast.py -------------------------------------------------------------------------------- /idstools/scripts/u2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/u2json.py -------------------------------------------------------------------------------- /idstools/scripts/u2spewfoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/scripts/u2spewfoo.py -------------------------------------------------------------------------------- /idstools/snort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/snort.py -------------------------------------------------------------------------------- /idstools/suricata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/suricata.py -------------------------------------------------------------------------------- /idstools/unified2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/unified2.py -------------------------------------------------------------------------------- /idstools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/idstools/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/NPD_2_1_2_1_Type_0.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/NPD_2_1_2_1_Type_0.pcap -------------------------------------------------------------------------------- /tests/bench-rule-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/bench-rule-parse.py -------------------------------------------------------------------------------- /tests/classification.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/classification.config -------------------------------------------------------------------------------- /tests/emerging-current_events.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/emerging-current_events.rules -------------------------------------------------------------------------------- /tests/emerging.rules.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/emerging.rules.tar.gz -------------------------------------------------------------------------------- /tests/emerging.rules.tar.gz.md5: -------------------------------------------------------------------------------- 1 | 3ed507977921535c79d7d322803cdd34 2 | -------------------------------------------------------------------------------- /tests/emerging.rules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/emerging.rules.zip -------------------------------------------------------------------------------- /tests/gen-msg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/gen-msg.map -------------------------------------------------------------------------------- /tests/ipv6-alert.unified2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/ipv6-alert.unified2 -------------------------------------------------------------------------------- /tests/merged.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/merged.log -------------------------------------------------------------------------------- /tests/multi-record-event.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/multi-record-event.log -------------------------------------------------------------------------------- /tests/rule-with-unicode.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/rule-with-unicode.rules -------------------------------------------------------------------------------- /tests/sid-msg-v2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/sid-msg-v2.map -------------------------------------------------------------------------------- /tests/sid-msg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/sid-msg.map -------------------------------------------------------------------------------- /tests/test_classificationmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_classificationmap.py -------------------------------------------------------------------------------- /tests/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_net.py -------------------------------------------------------------------------------- /tests/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_packet.py -------------------------------------------------------------------------------- /tests/test_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_rule.py -------------------------------------------------------------------------------- /tests/test_rulecat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_rulecat.py -------------------------------------------------------------------------------- /tests/test_signaturemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_signaturemap.py -------------------------------------------------------------------------------- /tests/test_snort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_snort.py -------------------------------------------------------------------------------- /tests/test_suricata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_suricata.py -------------------------------------------------------------------------------- /tests/test_unified2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_unified2.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonish/py-idstools/HEAD/tox.ini --------------------------------------------------------------------------------