Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):

- brain/        LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
                dispatch, A51 channels, and the OSINT cluster
- knowledge/    LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
                MITRE ATT&CK data
- reference/    defensive threat-reference (C3, shhbruh doc) + AdaYaml parser

License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.

Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.

https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
2026-06-10 06:53:01 +00:00

2.2 KiB

API Reference: Implementing Threat Modeling with MITRE ATT&CK

Libraries

attackcti (MITRE ATT&CK CTI)

  • Install: pip install attackcti
  • Docs: https://attackcti.readthedocs.io/
  • attack_client() -- Initialize ATT&CK client
  • get_groups() -- All threat actor groups
  • get_techniques() -- All techniques (Enterprise, Mobile, ICS)
  • get_techniques_used_by_group(group) -- Techniques per group
  • get_mitigations() -- Defensive mitigations
  • get_software() -- Malware and tools catalog

mitreattack-python

  • Install: pip install mitreattack-python
  • Docs: https://mitreattack-python.readthedocs.io/
  • MitreAttackData(stix_filepath) -- Load STIX bundle
  • get_groups_using_technique(technique_stix_id) -- Groups per technique
  • get_datacomponents_detecting_technique() -- Detection data sources

ATT&CK Navigator Layer Format

Field Description
name Layer display name
domain enterprise-attack, mobile-attack, ics-attack
techniques[] List of technique annotations
techniques[].techniqueID ATT&CK ID (e.g., T1059)
techniques[].score Numeric score for heat map
techniques[].color Hex color override
gradient Color scale definition

Threat Modeling Workflow

  1. Identify industry-relevant threat actors
  2. Map actor TTPs to ATT&CK techniques
  3. Assess current detection coverage
  4. Identify coverage gaps
  5. Prioritize defensive investments
  6. Export Navigator layer for visualization

Industry Threat Actor Mapping

  • Financial: APT38, FIN7, Carbanak, Lazarus
  • Healthcare: APT41, FIN12, Wizard Spider
  • Government: APT28, APT29, Turla, Sandworm
  • Technology: APT41, APT10, Hafnium
  • Energy: Sandworm, Dragonfly, APT33

Priority Scoring

  • CRITICAL: Technique used by 3+ relevant threat actors
  • HIGH: Technique used by 2 relevant threat actors
  • MEDIUM: Technique used by 1 relevant threat actor

External References