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
48 lines
1.7 KiB
Markdown
48 lines
1.7 KiB
Markdown
# API Reference: Zero Trust DNS with NextDNS
|
|
|
|
## NextDNS REST API
|
|
|
|
### Authentication
|
|
```
|
|
Header: X-Api-Key: <your-api-key>
|
|
Base URL: https://api.nextdns.io
|
|
```
|
|
|
|
### Profile Endpoints
|
|
| Method | Endpoint | Description |
|
|
|--------|----------|-------------|
|
|
| GET | `/profiles/{id}` | Get profile configuration |
|
|
| GET | `/profiles/{id}/security` | Get security feature settings |
|
|
| GET | `/profiles/{id}/denylist` | Get blocked domains list |
|
|
| GET | `/profiles/{id}/allowlist` | Get allowed domains list |
|
|
| GET | `/profiles/{id}/logs` | Get DNS query logs |
|
|
| GET | `/profiles/{id}/analytics/status` | Query volume analytics |
|
|
| GET | `/profiles/{id}/analytics/domains` | Top queried domains |
|
|
| GET | `/profiles/{id}/analytics/blockedReasons` | Block reason breakdown |
|
|
|
|
### Security Feature Keys
|
|
| Key | Feature |
|
|
|-----|---------|
|
|
| `threatIntelligenceFeeds` | Real-time threat intel blocking |
|
|
| `aiDetection` | AI-based threat detection |
|
|
| `googleSafeBrowsing` | Google Safe Browsing integration |
|
|
| `cryptojacking` | Cryptomining domain blocking |
|
|
| `dnsRebinding` | DNS rebinding attack protection |
|
|
| `idnHomographs` | IDN homograph attack protection |
|
|
| `typosquatting` | Typosquatting domain detection |
|
|
| `dga` | Domain generation algorithm blocking |
|
|
| `nrd` | Newly registered domain blocking |
|
|
|
|
### Log Entry Fields
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `domain` | Queried domain name |
|
|
| `status` | `allowed`, `blocked`, or `default` |
|
|
| `reasons` | Array of block reasons |
|
|
| `clientIp` | Requesting client IP |
|
|
| `timestamp` | Query timestamp (ISO 8601) |
|
|
|
|
## References
|
|
- NextDNS API: https://nextdns.github.io/api/
|
|
- NextDNS Security: https://nextdns.io/security
|