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

39 lines
1.4 KiB
Markdown

# Microsegmentation for Zero Trust — API Reference
## Libraries
| Library | Install | Purpose |
|---------|---------|---------|
| boto3 | `pip install boto3` | AWS security group audit |
| requests | `pip install requests` | Illumio / Guardicore API client |
## Key boto3 EC2 Methods
| Method | Description |
|--------|-------------|
| `describe_security_groups()` | List SGs with inbound/outbound rules |
| `authorize_security_group_ingress()` | Add inbound rule |
| `revoke_security_group_ingress()` | Remove inbound rule |
## Illumio PCE API Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/api/v2/orgs/{id}/workloads` | List managed workloads |
| GET | `/api/v2/orgs/{id}/sec_policy/draft/rule_sets` | List rule sets |
| PUT | `/api/v2/orgs/{id}/workloads/{id}` | Update workload enforcement mode |
## Segmentation Enforcement Modes
| Mode | Description |
|------|-------------|
| Visibility Only | Monitor traffic without blocking |
| Selective | Block specific flows, allow rest |
| Full | Deny all, allow by policy (zero trust) |
## External References
- [Illumio API Guide](https://docs.illumio.com/core/23.5/API-Reference/index.html)
- [NIST SP 800-207 Zero Trust Architecture](https://csrc.nist.gov/publications/detail/sp/800-207/final)
- [AWS Security Groups Best Practices](https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html)