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

49 lines
1.8 KiB
Markdown

# API Reference: Tracking Threat Actor Infrastructure
## Pivoting Techniques
| Technique | Source | Discovers |
|-----------|--------|-----------|
| Passive DNS | DNS resolvers | Domains on same IP, historical mappings |
| Reverse WHOIS | Registrar data | Domains by same registrant |
| SSL Certificate | CT logs, direct | Shared certs, SANs, issuers |
| Shodan/Censys | Internet scanning | Open ports, services, banners |
| HTTP fingerprint | Server responses | Body hash, headers, favicon |
| JARM/JA3S | TLS handshake | C2 framework identification |
## API Endpoints
| Service | Endpoint | Auth |
|---------|----------|------|
| Shodan Host | `GET /shodan/host/{ip}?key=` | API key |
| VirusTotal IP | `GET /api/v3/ip-addresses/{ip}` | x-apikey header |
| VirusTotal Domain | `GET /api/v3/domains/{domain}` | x-apikey header |
| SecurityTrails | `GET /v1/domain/{d}/subdomains` | APIKEY header |
| RDAP WHOIS | `GET https://rdap.org/domain/{d}` | None |
## Network Fingerprinting
| Method | Tool | Description |
|--------|------|-------------|
| JARM | jarm.py | Active TLS server fingerprint |
| JA3S | Zeek/Wireshark | Passive TLS Server Hello hash |
| Favicon hash | Shodan `http.favicon.hash` | mmh3 hash of favicon.ico |
| HTTP body hash | SHA-256 | Response body fingerprint |
| Server banner | HTTP Server header | Software identification |
## Python Libraries
| Library | Version | Purpose |
|---------|---------|---------|
| `requests` | >=2.28 | API queries to Shodan/VT |
| `ssl` | stdlib | TLS certificate retrieval |
| `socket` | stdlib | DNS resolution, connections |
| `hashlib` | stdlib | Certificate/content fingerprinting |
## References
- Shodan API: https://developer.shodan.io/api
- VirusTotal API v3: https://docs.virustotal.com/reference/overview
- Certificate Transparency: https://certificate.transparency.dev/
- JARM: https://github.com/salesforce/jarm