├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .landscape.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── REQUIREMENTS.txt ├── config ├── config.default.yaml ├── config.travis.yaml ├── data-configuration.yaml ├── local-server.default.yaml └── remote-servers.default.yaml ├── docker-run.sh ├── misp_taxii_hooks ├── __init__.py └── hooks.py ├── scripts ├── install-remote-server.sh ├── push_published_to_taxii.py ├── run-taxii-poll.py └── start-misp-taxii.sh ├── setup.py └── tests ├── block-network-traffic.xml ├── campaign-v-actors.xml ├── command-and-control-ip-list.xml ├── cve-in-exploit-target.xml ├── file-hash-reputation.xml ├── identifying-a-threat-actor-group.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 ├── kill-chain.xml ├── malicious-email-indicator-with-attachment.xml ├── malware-characterization-using-maec.xml ├── malware-indicator-for-file-hash.xml ├── openioc-test-mechanism.xml ├── sample.xml ├── snort-test-mechanism.xml ├── test.xml ├── test_upload.py └── yara-test-mechanism.xml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/REQUIREMENTS.txt -------------------------------------------------------------------------------- /config/config.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/config/config.default.yaml -------------------------------------------------------------------------------- /config/config.travis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/config/config.travis.yaml -------------------------------------------------------------------------------- /config/data-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/config/data-configuration.yaml -------------------------------------------------------------------------------- /config/local-server.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/config/local-server.default.yaml -------------------------------------------------------------------------------- /config/remote-servers.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/config/remote-servers.default.yaml -------------------------------------------------------------------------------- /docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/docker-run.sh -------------------------------------------------------------------------------- /misp_taxii_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /misp_taxii_hooks/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/misp_taxii_hooks/hooks.py -------------------------------------------------------------------------------- /scripts/install-remote-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/scripts/install-remote-server.sh -------------------------------------------------------------------------------- /scripts/push_published_to_taxii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/scripts/push_published_to_taxii.py -------------------------------------------------------------------------------- /scripts/run-taxii-poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/scripts/run-taxii-poll.py -------------------------------------------------------------------------------- /scripts/start-misp-taxii.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/scripts/start-misp-taxii.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/setup.py -------------------------------------------------------------------------------- /tests/block-network-traffic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/block-network-traffic.xml -------------------------------------------------------------------------------- /tests/campaign-v-actors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/campaign-v-actors.xml -------------------------------------------------------------------------------- /tests/command-and-control-ip-list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/command-and-control-ip-list.xml -------------------------------------------------------------------------------- /tests/cve-in-exploit-target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/cve-in-exploit-target.xml -------------------------------------------------------------------------------- /tests/file-hash-reputation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/file-hash-reputation.xml -------------------------------------------------------------------------------- /tests/identifying-a-threat-actor-group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/identifying-a-threat-actor-group.xml -------------------------------------------------------------------------------- /tests/incident-malware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/incident-malware.xml -------------------------------------------------------------------------------- /tests/incident-with-affected-asset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/incident-with-affected-asset.xml -------------------------------------------------------------------------------- /tests/incident-with-related-observables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/incident-with-related-observables.xml -------------------------------------------------------------------------------- /tests/indicator-for-c2-ip-address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/indicator-for-c2-ip-address.xml -------------------------------------------------------------------------------- /tests/indicator-for-malicious-url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/indicator-for-malicious-url.xml -------------------------------------------------------------------------------- /tests/kill-chain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/kill-chain.xml -------------------------------------------------------------------------------- /tests/malicious-email-indicator-with-attachment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/malicious-email-indicator-with-attachment.xml -------------------------------------------------------------------------------- /tests/malware-characterization-using-maec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/malware-characterization-using-maec.xml -------------------------------------------------------------------------------- /tests/malware-indicator-for-file-hash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/malware-indicator-for-file-hash.xml -------------------------------------------------------------------------------- /tests/openioc-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/openioc-test-mechanism.xml -------------------------------------------------------------------------------- /tests/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/sample.xml -------------------------------------------------------------------------------- /tests/snort-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/snort-test-mechanism.xml -------------------------------------------------------------------------------- /tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/test.xml -------------------------------------------------------------------------------- /tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/test_upload.py -------------------------------------------------------------------------------- /tests/yara-test-mechanism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/MISP-Taxii-Server/HEAD/tests/yara-test-mechanism.xml --------------------------------------------------------------------------------