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
55 lines
1.7 KiB
Markdown
55 lines
1.7 KiB
Markdown
# API Reference: IOC Enrichment Automation
|
|
|
|
## VirusTotal API v3
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/api/v3/ip_addresses/{ip}` | GET | IP address reputation and analysis stats |
|
|
| `/api/v3/domains/{domain}` | GET | Domain reputation, WHOIS, and DNS data |
|
|
| `/api/v3/files/{hash}` | GET | File hash analysis with 70+ AV engines |
|
|
| `/api/v3/urls` | POST | Submit URL for scanning |
|
|
|
|
Header: `x-apikey: <API_KEY>` | Rate limit: 4 req/min (free), 500/min (premium)
|
|
|
|
## AbuseIPDB API v2
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/api/v2/check` | GET | Check IP abuse confidence score |
|
|
| `/api/v2/report` | POST | Report an abusive IP address |
|
|
|
|
Header: `Key: <API_KEY>` | Rate limit: 1000 req/day (free)
|
|
|
|
## Shodan API
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/shodan/host/{ip}` | GET | Host info: ports, OS, vulns |
|
|
| `/shodan/host/search` | GET | Search Shodan by query |
|
|
|
|
Param: `key=<API_KEY>` | Rate limit: 1 req/sec
|
|
|
|
## GreyNoise Community API
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/v3/community/{ip}` | GET | IP classification (malicious/benign/unknown) |
|
|
|
|
Header: `key: <API_KEY>`
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `requests` | >=2.28 | HTTP client for all API calls |
|
|
| `vt-py` | >=0.18 | Official VirusTotal Python client |
|
|
| `shodan` | >=1.28 | Official Shodan Python client |
|
|
|
|
## References
|
|
|
|
- VirusTotal API docs: https://docs.virustotal.com/reference/overview
|
|
- AbuseIPDB API docs: https://docs.abuseipdb.com/
|
|
- Shodan API docs: https://developer.shodan.io/api
|
|
- GreyNoise docs: https://docs.greynoise.io/
|
|
- URLScan.io API: https://urlscan.io/docs/api/
|