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

44 lines
1.4 KiB
Markdown

# API Reference — Performing Open Source Intelligence Gathering
## Libraries Used
- **requests**: HTTP requests for tech fingerprinting and social media checks
- **dns.resolver** (dnspython): DNS record enumeration and subdomain discovery
- **python-whois**: Domain WHOIS registration data
- **re**: Email pattern extraction
- **socket**: Network connectivity
## CLI Interface
```
python agent.py whois --domain example.com
python agent.py dns --domain example.com
python agent.py email --domain example.com
python agent.py tech --url https://example.com
python agent.py social --name "John Doe"
```
## Core Functions
### `whois_lookup(domain)` — Domain registration data
Returns registrar, creation/expiration dates, name servers, registrant info.
### `dns_enumeration(domain)` — DNS record and subdomain discovery
Queries 7 record types. Tests 15 common subdomain prefixes.
### `email_harvest(domain)` — Email address discovery
Uses Hunter.io API and regex pattern matching.
### `technology_fingerprint(url)` — Web technology identification
Detects: web server, framework, CMS. Audits 6 security headers.
### `social_media_search(target_name)` — Profile enumeration
Checks: LinkedIn, Twitter/X, GitHub, Facebook, Instagram.
## Security Headers Checked
Strict-Transport-Security, Content-Security-Policy, X-Frame-Options,
X-Content-Type-Options, X-XSS-Protection, Referrer-Policy
## Dependencies
```
pip install requests dnspython python-whois
```