mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-02 00:47:49 +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
70 lines
2.0 KiB
Markdown
70 lines
2.0 KiB
Markdown
# API Reference: Subdomain Enumeration with Subfinder
|
|
|
|
## Subfinder CLI Options
|
|
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `-d <domain>` | Target domain to enumerate |
|
|
| `-dL <file>` | File containing list of domains |
|
|
| `-o <file>` | Output file for results |
|
|
| `-oJ` | JSON lines output format |
|
|
| `-oD <dir>` | Output directory (one file per domain) |
|
|
| `-all` | Use all passive sources (slower, more thorough) |
|
|
| `-silent` | Show only subdomains in output |
|
|
| `-recursive` | Enumerate subdomains of discovered subdomains |
|
|
| `-s <src1,src2>` | Use only specified sources |
|
|
| `-es <src>` | Exclude specific sources |
|
|
| `-cs` | Show source for each subdomain |
|
|
| `-rate-limit <n>` | Max requests per second |
|
|
| `-t <n>` | Number of concurrent threads |
|
|
|
|
## httpx CLI Options
|
|
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `-l <file>` | Input file with hosts |
|
|
| `-ports <p1,p2>` | Ports to probe |
|
|
| `-status-code` | Show HTTP status code |
|
|
| `-title` | Show page title |
|
|
| `-tech-detect` | Detect web technologies |
|
|
| `-json` | JSON output format |
|
|
| `-silent` | Suppress banner |
|
|
|
|
## dnsx CLI Options
|
|
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `-l <file>` | Input file with hosts |
|
|
| `-a` | Resolve A records |
|
|
| `-cname` | Resolve CNAME records |
|
|
| `-resp` | Show response data |
|
|
| `-json` | JSON output |
|
|
|
|
## Passive Sources
|
|
|
|
| Source | API Key Required |
|
|
|--------|-----------------|
|
|
| crt.sh | No |
|
|
| VirusTotal | Yes |
|
|
| Shodan | Yes |
|
|
| SecurityTrails | Yes |
|
|
| Censys | Yes |
|
|
| Chaos (ProjectDiscovery) | Yes |
|
|
| AlienVault OTX | No |
|
|
| HackerTarget | No |
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `subprocess` | stdlib | Execute subfinder, httpx, dnsx CLI |
|
|
| `json` | stdlib | Parse JSON lines output |
|
|
| `pathlib` | stdlib | File path management |
|
|
|
|
## References
|
|
|
|
- Subfinder GitHub: https://github.com/projectdiscovery/subfinder
|
|
- httpx GitHub: https://github.com/projectdiscovery/httpx
|
|
- dnsx GitHub: https://github.com/projectdiscovery/dnsx
|
|
- Subfinder Config: https://docs.projectdiscovery.io/tools/subfinder/install
|