├── .coveragerc ├── .gitchangelogrc ├── .gitignore ├── .landscape.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENCE.txt ├── README.md ├── REQUIREMENTS.txt ├── misp.login.example ├── misp_stix_converter ├── __init__.py ├── converters │ ├── __init__.py │ ├── buildMISPAttribute.py │ ├── buildSTIXAttribute.py │ ├── convert.py │ └── lint_roller.py ├── errors.py ├── misp-to-stix.py ├── misp.login.example ├── servers │ ├── __init__.py │ └── misp.py └── stix-to-misp.py ├── setup.cfg ├── setup.py ├── test_files ├── Appendix_E_MD5s.xml ├── Appendix_F_SSLCertificates.xml ├── Mandiant_APT1_Report.xml ├── block-network-traffic.xml ├── campaign-v-actors.json ├── campaign-v-actors.xml ├── command-and-control-ip-list.xml ├── cve-in-exploit-target.xml ├── file-hash-reputation.xml ├── incident-malware.xml ├── incident-with-affected-asset.xml ├── incident-with-related-observables.xml ├── indicator-for-c2-ip-address.xml ├── indicator-for-malicious-url.xml ├── issue11.xml ├── kill-chain.xml ├── malicious-email-indicator-with-attachment.xml ├── malware-characterization-using-maec.xml ├── malware-indicator-for-file-hash.xml ├── openioc-test-mechanism.xml ├── snort-test-mechanism.xml ├── test.json ├── test.xml ├── with-indicator-descriptions.xml └── yara-test-mechanism.xml └── tests ├── test_misp-to-stix.py └── test_stix-to-misp.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitchangelogrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/.gitchangelogrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/REQUIREMENTS.txt -------------------------------------------------------------------------------- /misp.login.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp.login.example -------------------------------------------------------------------------------- /misp_stix_converter/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | __version__ = "0.2.3" 4 | -------------------------------------------------------------------------------- /misp_stix_converter/converters/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /misp_stix_converter/converters/buildMISPAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/converters/buildMISPAttribute.py -------------------------------------------------------------------------------- /misp_stix_converter/converters/buildSTIXAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/converters/buildSTIXAttribute.py -------------------------------------------------------------------------------- /misp_stix_converter/converters/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/converters/convert.py -------------------------------------------------------------------------------- /misp_stix_converter/converters/lint_roller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/converters/lint_roller.py -------------------------------------------------------------------------------- /misp_stix_converter/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/errors.py -------------------------------------------------------------------------------- /misp_stix_converter/misp-to-stix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/misp-to-stix.py -------------------------------------------------------------------------------- /misp_stix_converter/misp.login.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/misp.login.example -------------------------------------------------------------------------------- /misp_stix_converter/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misp_stix_converter/servers/misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/servers/misp.py -------------------------------------------------------------------------------- /misp_stix_converter/stix-to-misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/misp_stix_converter/stix-to-misp.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/setup.py -------------------------------------------------------------------------------- /test_files/Appendix_E_MD5s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/Appendix_E_MD5s.xml -------------------------------------------------------------------------------- /test_files/Appendix_F_SSLCertificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/Appendix_F_SSLCertificates.xml -------------------------------------------------------------------------------- /test_files/Mandiant_APT1_Report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/Mandiant_APT1_Report.xml -------------------------------------------------------------------------------- /test_files/block-network-traffic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/block-network-traffic.xml -------------------------------------------------------------------------------- /test_files/campaign-v-actors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/campaign-v-actors.json -------------------------------------------------------------------------------- /test_files/campaign-v-actors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/campaign-v-actors.xml -------------------------------------------------------------------------------- /test_files/command-and-control-ip-list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/command-and-control-ip-list.xml -------------------------------------------------------------------------------- /test_files/cve-in-exploit-target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/cve-in-exploit-target.xml -------------------------------------------------------------------------------- /test_files/file-hash-reputation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/file-hash-reputation.xml -------------------------------------------------------------------------------- /test_files/incident-malware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/incident-malware.xml -------------------------------------------------------------------------------- /test_files/incident-with-affected-asset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/incident-with-affected-asset.xml -------------------------------------------------------------------------------- /test_files/incident-with-related-observables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/incident-with-related-observables.xml -------------------------------------------------------------------------------- /test_files/indicator-for-c2-ip-address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/indicator-for-c2-ip-address.xml -------------------------------------------------------------------------------- /test_files/indicator-for-malicious-url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/indicator-for-malicious-url.xml -------------------------------------------------------------------------------- /test_files/issue11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/issue11.xml -------------------------------------------------------------------------------- /test_files/kill-chain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/kill-chain.xml -------------------------------------------------------------------------------- /test_files/malicious-email-indicator-with-attachment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/malicious-email-indicator-with-attachment.xml -------------------------------------------------------------------------------- /test_files/malware-characterization-using-maec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/malware-characterization-using-maec.xml -------------------------------------------------------------------------------- /test_files/malware-indicator-for-file-hash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/malware-indicator-for-file-hash.xml -------------------------------------------------------------------------------- /test_files/openioc-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/openioc-test-mechanism.xml -------------------------------------------------------------------------------- /test_files/snort-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/snort-test-mechanism.xml -------------------------------------------------------------------------------- /test_files/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/test.json -------------------------------------------------------------------------------- /test_files/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/test.xml -------------------------------------------------------------------------------- /test_files/with-indicator-descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/with-indicator-descriptions.xml -------------------------------------------------------------------------------- /test_files/yara-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/test_files/yara-test-mechanism.xml -------------------------------------------------------------------------------- /tests/test_misp-to-stix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/tests/test_misp-to-stix.py -------------------------------------------------------------------------------- /tests/test_stix-to-misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-STIX-Converter/HEAD/tests/test_stix-to-misp.py --------------------------------------------------------------------------------