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
46 lines
1.8 KiB
Markdown
46 lines
1.8 KiB
Markdown
# Full-Scope Red Team Engagement — API Reference
|
|
|
|
## Libraries
|
|
|
|
| Library | Install | Purpose |
|
|
|---------|---------|---------|
|
|
| attackcti | `pip install attackcti` | MITRE ATT&CK STIX/TAXII client for technique enumeration |
|
|
| impacket | `pip install impacket` | AD attack tools (secretsdump, psexec, wmiexec) |
|
|
| requests | `pip install requests` | HTTP client for C2 API integration |
|
|
|
|
## Key attackcti Methods
|
|
|
|
| Method | Description |
|
|
|--------|-------------|
|
|
| `attack_client()` | Initialize MITRE ATT&CK client |
|
|
| `client.get_enterprise_techniques()` | List all Enterprise techniques |
|
|
| `client.get_enterprise_mitigations()` | List mitigations |
|
|
| `client.get_groups()` | List threat actor groups |
|
|
| `client.get_software()` | List tools and malware |
|
|
|
|
## Engagement Phases (PTES Framework)
|
|
|
|
| Phase | Duration | Key Activities |
|
|
|-------|----------|----------------|
|
|
| Pre-engagement | 1-2 weeks | Scoping, RoE, legal agreements |
|
|
| Reconnaissance | 3-5 days | OSINT, footprinting, enumeration |
|
|
| Initial Access | 5-7 days | Phishing, exploits, physical |
|
|
| Post-exploitation | 5-7 days | Lateral movement, persistence, privilege escalation |
|
|
| Objective | 2-3 days | Crown jewel access, exfiltration simulation |
|
|
| Reporting | 3-5 days | Findings, remediation, executive brief |
|
|
|
|
## C2 Frameworks
|
|
|
|
| Framework | Type | Protocol |
|
|
|-----------|------|----------|
|
|
| Cobalt Strike | Commercial | HTTPS, DNS, SMB |
|
|
| Sliver | Open source | mTLS, HTTPS, DNS, WireGuard |
|
|
| Mythic | Open source | HTTP, websocket, custom |
|
|
|
|
## External References
|
|
|
|
- [MITRE ATT&CK Enterprise Matrix](https://attack.mitre.org/matrices/enterprise/)
|
|
- [PTES Standard](http://www.pentest-standard.org/)
|
|
- [attackcti Documentation](https://attackcti.readthedocs.io/)
|
|
- [Sliver C2 Wiki](https://github.com/BishopFox/sliver/wiki)
|