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
63 lines
2.0 KiB
Markdown
63 lines
2.0 KiB
Markdown
# Authenticated Vulnerability Scan — API Reference
|
|
|
|
## Libraries
|
|
|
|
| Library | Install | Purpose |
|
|
|---------|---------|---------|
|
|
| requests | `pip install requests` | Nessus REST API client |
|
|
|
|
## Nessus REST API Authentication
|
|
|
|
```
|
|
Header: X-ApiKeys: accessKey=<key>; secretKey=<key>
|
|
```
|
|
|
|
## Nessus API Endpoints
|
|
|
|
| Method | Endpoint | Description |
|
|
|--------|----------|-------------|
|
|
| GET | `/scans` | List all scans |
|
|
| GET | `/scans/{id}` | Scan details with results |
|
|
| GET | `/scans/{id}/hosts/{host_id}` | Per-host vulnerability details |
|
|
| POST | `/scans` | Create new scan |
|
|
| POST | `/scans/{id}/launch` | Launch existing scan |
|
|
| POST | `/scans/{id}/export` | Export results (nessus/csv/html) |
|
|
| GET | `/policies` | List scan policies |
|
|
| GET | `/credentials` | List stored credentials |
|
|
|
|
## Severity Levels
|
|
|
|
| Index | Name | CVSS Range |
|
|
|-------|------|-----------|
|
|
| 4 | Critical | 9.0 - 10.0 |
|
|
| 3 | High | 7.0 - 8.9 |
|
|
| 2 | Medium | 4.0 - 6.9 |
|
|
| 1 | Low | 0.1 - 3.9 |
|
|
| 0 | Info | Informational |
|
|
|
|
## Credential Types for Authenticated Scans
|
|
|
|
| Type | Protocol | Checks Enabled |
|
|
|------|----------|---------------|
|
|
| SSH | Linux/macOS | Package versions, file permissions, configs |
|
|
| SMB | Windows | Patch levels, registry, installed software |
|
|
| ESXi | VMware | Hypervisor patches, VM configurations |
|
|
| SNMP | Network devices | Device firmware, community string audit |
|
|
| Database | SQL Server/Oracle | DB-level patches, user permissions |
|
|
|
|
## Key Nessus Plugin Families
|
|
|
|
| Family | Description |
|
|
|--------|-------------|
|
|
| Windows: Microsoft Bulletins | Microsoft security patches |
|
|
| Ubuntu Local Security Checks | Ubuntu package vulnerabilities |
|
|
| CGI abuses | Web application vulnerabilities |
|
|
| Misc. | Miscellaneous security checks |
|
|
| Service detection | Network service identification |
|
|
|
|
## External References
|
|
|
|
- [Nessus REST API Docs](https://docs.tenable.com/nessus/Content/API.htm)
|
|
- [Tenable Developer Portal](https://developer.tenable.com/)
|
|
- [Nessus Credentialed Scanning](https://docs.tenable.com/nessus/Content/CredentialedChecksOnWindows.htm)
|