mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
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
51 lines
1.6 KiB
Markdown
51 lines
1.6 KiB
Markdown
# API Reference: Purple Team Exercise
|
|
|
|
## Atomic Red Team (PowerShell)
|
|
|
|
```powershell
|
|
# Install
|
|
IEX (IWR 'https://raw.githubusercontent.com/redcanaryco/invoke-atomicredteam/master/install-atomicredteam.ps1')
|
|
Install-AtomicRedTeam -getAtomics
|
|
|
|
# Execute technique
|
|
Invoke-AtomicTest T1059.001 -TestNumbers 1
|
|
|
|
# Cleanup after test
|
|
Invoke-AtomicTest T1059.001 -TestNumbers 1 -Cleanup
|
|
```
|
|
|
|
## MITRE Caldera API
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/api/v2/operations` | POST | Start adversary emulation operation |
|
|
| `/api/v2/operations/{id}` | GET | Get operation status and results |
|
|
| `/api/v2/abilities` | GET | List available ATT&CK abilities |
|
|
| `/api/v2/adversaries` | GET | List adversary profiles |
|
|
|
|
## ATT&CK Techniques Commonly Tested
|
|
|
|
| ID | Technique | Detection Signal |
|
|
|----|-----------|-----------------|
|
|
| T1059.001 | PowerShell | Sysmon EventCode 1, PowerShell logging |
|
|
| T1053.005 | Scheduled Task | EventCode 4698 |
|
|
| T1003.001 | LSASS Access | Sysmon EventCode 10 |
|
|
| T1550.002 | Pass-the-Hash | EventCode 4624 with NTLM Type 3 |
|
|
| T1021.002 | PsExec | EventCode 7045 (PSEXESVC) |
|
|
| T1490 | Shadow Copy Deletion | vssadmin process creation |
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `json` | stdlib | Test plan and report management |
|
|
| `subprocess` | stdlib | Execute Atomic Red Team tests |
|
|
| `datetime` | stdlib | Detection latency measurement |
|
|
|
|
## References
|
|
|
|
- Atomic Red Team: https://github.com/redcanaryco/atomic-red-team
|
|
- MITRE Caldera: https://github.com/mitre/caldera
|
|
- Vectr: https://vectr.io/
|
|
- ATT&CK Navigator: https://mitre-attack.github.io/attack-navigator/
|