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
69 lines
1.5 KiB
Markdown
69 lines
1.5 KiB
Markdown
# API Reference: urlscan.io URL Analysis
|
|
|
|
## Base URL
|
|
```
|
|
https://urlscan.io/api/v1
|
|
```
|
|
|
|
## Authentication
|
|
```
|
|
API-Key: YOUR_API_KEY
|
|
```
|
|
|
|
## Submit Scan
|
|
```
|
|
POST /scan/
|
|
```
|
|
```json
|
|
{"url": "https://example.com", "visibility": "private"}
|
|
```
|
|
| Field | Values | Description |
|
|
|-------|--------|-------------|
|
|
| `url` | URL string | URL to scan |
|
|
| `visibility` | public/unlisted/private | Scan visibility |
|
|
|
|
Response: `{"uuid": "...", "result": "https://urlscan.io/result/UUID/", "api": "..."}`
|
|
|
|
## Get Result
|
|
```
|
|
GET /result/{uuid}/
|
|
```
|
|
Returns 404 while scanning, 200 when complete.
|
|
|
|
## Search
|
|
```
|
|
GET /search/?q=domain:example.com&size=100
|
|
```
|
|
Query fields: `domain:`, `ip:`, `server:`, `country:`, `filename:`, `hash:`
|
|
|
|
## Result Structure
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `page.url` | Final URL after redirects |
|
|
| `page.domain` | Domain name |
|
|
| `page.ip` | Resolved IP |
|
|
| `page.country` | Server country |
|
|
| `page.status` | HTTP status code |
|
|
| `page.title` | Page title |
|
|
| `page.server` | Server header |
|
|
| `page.tlsIssuer` | TLS certificate issuer |
|
|
| `verdicts.overall.malicious` | Boolean malicious verdict |
|
|
| `verdicts.overall.score` | Risk score (0-100) |
|
|
| `lists.ips` | List of contacted IPs |
|
|
| `lists.certificates` | TLS certificates observed |
|
|
| `stats.resourceStats` | Resource type statistics |
|
|
|
|
## Screenshot
|
|
```
|
|
GET /screenshots/{uuid}.png
|
|
```
|
|
|
|
## DOM Snapshot
|
|
```
|
|
GET /dom/{uuid}/
|
|
```
|
|
|
|
## Rate Limits
|
|
- Free: 100 scans/day, 1000 searches/day
|
|
- Paid: Higher limits per plan
|