mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-11 05:34:55 +03:00
27c6414ca5
Complete skill folder anatomy across all cybersecurity skills: - scripts/agent.py: 80-150 line Python agents using real libraries (impacket, boto3, azure-mgmt-*, kubernetes, pefile, yara, scapy, shodan, stix2, etc.) - references/api-reference.md: real API documentation with method signatures - LICENSE: MIT license for all skill folders
2.2 KiB
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 clientget_groups()-- All threat actor groupsget_techniques()-- All techniques (Enterprise, Mobile, ICS)get_techniques_used_by_group(group)-- Techniques per groupget_mitigations()-- Defensive mitigationsget_software()-- Malware and tools catalog
mitreattack-python
- Install:
pip install mitreattack-python - Docs: https://mitreattack-python.readthedocs.io/
MitreAttackData(stix_filepath)-- Load STIX bundleget_groups_using_technique(technique_stix_id)-- Groups per techniqueget_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
- Identify industry-relevant threat actors
- Map actor TTPs to ATT&CK techniques
- Assess current detection coverage
- Identify coverage gaps
- Prioritize defensive investments
- 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
- ATT&CK Groups: https://attack.mitre.org/groups/
- ATT&CK Navigator: https://mitre-attack.github.io/attack-navigator/
- CTID Center: https://ctid.mitre-engenuity.org/
- ATT&CK STIX Data: https://github.com/mitre/cti
- Threat Modeling Manifesto: https://www.threatmodelingmanifesto.org/