├── .gitignore ├── LICENSE ├── README.md ├── adc.py ├── attack-navigator-template.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .mypy_cache 2 | .python-version 3 | security_content/ 4 | *.xml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/attack-detections-collector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/attack-detections-collector/HEAD/README.md -------------------------------------------------------------------------------- /adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/attack-detections-collector/HEAD/adc.py -------------------------------------------------------------------------------- /attack-navigator-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splunk/attack-detections-collector/HEAD/attack-navigator-template.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | requests 3 | stix2 4 | PyYAML 5 | --------------------------------------------------------------------------------