Data Downloads

Machine-readable governance artifacts for automated consumption. ATX-1 Threat Matrix v2.2 — 10 tactics, 58 techniques in STIX 2.1 and structured JSON.

Consume

Fetch the STIX bundle
curl https://aegis-governance.com/atx-1/stix-bundle.json | jq '.objects[] | select(.type == "attack-pattern") | .name'
Python — load techniques
import json, urllib.request

url = "https://aegis-governance.com/atx-1/techniques.json"
techniques = json.loads(urllib.request.urlopen(url).read())

for t in techniques:
    print(f"{t['id']}: {t['name']} ({t['severity']})")
Validate against schema
npx ajv validate -s https://aegis-governance.com/schemas/atx-technique.schema.json -d techniques.json