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
58 lines
1.7 KiB
Markdown
58 lines
1.7 KiB
Markdown
# API Reference: Web Application Scanning with Nikto
|
|
|
|
## Nikto CLI Options
|
|
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `-h <host>` | Target hostname or IP |
|
|
| `-port <ports>` | Target ports (comma-separated) |
|
|
| `-ssl` | Force SSL/TLS connection |
|
|
| `-Format xml\|json\|csv\|htm` | Output format |
|
|
| `-output <file>` | Save results to file |
|
|
| `-Tuning <options>` | Scan tuning categories |
|
|
| `-Plugins <list>` | Specific plugins to run |
|
|
| `-maxtime <seconds>s` | Maximum scan duration |
|
|
| `-nointeractive` | Disable interactive prompts |
|
|
| `-useproxy <url>` | Use HTTP proxy |
|
|
| `-id <user:pass>` | HTTP Basic auth credentials |
|
|
|
|
## Tuning Categories
|
|
|
|
| Code | Category |
|
|
|------|----------|
|
|
| 1 | Interesting File / Seen in logs |
|
|
| 2 | Misconfiguration / Default File |
|
|
| 3 | Information Disclosure |
|
|
| 4 | Injection (XSS/Script/HTML) |
|
|
| 5 | Remote File Retrieval - Inside Web Root |
|
|
| 6 | Denial of Service |
|
|
| 7 | Remote File Retrieval - Server Wide |
|
|
| 8 | Command Execution / Remote Shell |
|
|
| 9 | SQL Injection |
|
|
| 0 | File Upload |
|
|
|
|
## XML Output Structure
|
|
|
|
| Element | Description |
|
|
|---------|-------------|
|
|
| `<niktoscan>` | Root element |
|
|
| `<scandetails>` | Scan metadata |
|
|
| `<item>` | Individual finding |
|
|
| `<item id="..." osvdbid="...">` | Finding with OSVDB reference |
|
|
| `<uri>` | Affected URI path |
|
|
| `<description>` | Finding description |
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `subprocess` | stdlib | Execute Nikto CLI |
|
|
| `xml.etree.ElementTree` | stdlib | Parse Nikto XML output |
|
|
| `json` | stdlib | Report generation |
|
|
|
|
## References
|
|
|
|
- Nikto GitHub: https://github.com/sullo/nikto
|
|
- Nikto Documentation: https://cirt.net/Nikto2
|
|
- OSVDB (archived): https://vulndb.cyberriskanalytics.com/
|