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.1 KiB

API Reference: Performing Red Team with Covenant C2

Covenant REST API Endpoints

Endpoint Method Purpose
/api/users/login POST Authenticate and get JWT token
/api/listeners GET List all listeners
/api/listeners/http POST Create HTTP listener
/api/grunts GET List all grunts (agents)
/api/grunts/{id}/interact POST Execute task on grunt
/api/grunttasks/{id} GET Get task output
/api/launchers/binary PUT Generate binary launcher
/api/launchers/powershell PUT Generate PowerShell launcher
/api/launchers/msbuild PUT Generate MSBuild launcher

Authentication

POST /api/users/login
{"userName": "admin", "password": "pass"}

Response: {"covenantToken": "eyJhbGciOi..."}
Header: Authorization: Bearer <token>

Listener Configuration

Field Type Description
name string Listener display name
bindAddress string IP to bind (0.0.0.0 for all)
bindPort int Port for grunt callbacks
connectAddresses array Callback addresses for grunts
listenerTypeId int 1=HTTP, 2=Bridge

Grunt Status Values

Status Description
Uninitialized Grunt created but not connected
Stage0 Initial callback received
Stage1 Key exchange in progress
Stage2 Fully staged and active
Active Connected and ready for tasks
Lost Missed check-in threshold

Built-in Tasks

Task Description
WhoAmI Current user identity
GetHostname Target hostname
ListDirectory Directory listing
Download Retrieve file from target
Upload Upload file to target
PowerShell Execute PowerShell command
Assembly Load and execute .NET assembly
Mimikatz Credential extraction

References