mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 16:40:24 +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
2.0 KiB
Markdown
58 lines
2.0 KiB
Markdown
# API Reference: Scanning Network with Nmap Advanced
|
|
|
|
## python-nmap Library
|
|
|
|
### Installation
|
|
```bash
|
|
pip install python-nmap
|
|
```
|
|
Requires Nmap binary installed on the system (`nmap` must be in PATH).
|
|
|
|
### Core Classes
|
|
|
|
#### `nmap.PortScanner()`
|
|
Main scanner class wrapping the Nmap command-line tool.
|
|
|
|
| Method | Parameters | Returns | Description |
|
|
|--------|-----------|---------|-------------|
|
|
| `scan()` | `hosts`, `ports`, `arguments` | `dict` | Execute Nmap scan with given arguments |
|
|
| `all_hosts()` | - | `list[str]` | List of all scanned host IPs |
|
|
| `nmap_version()` | - | `tuple` | Installed Nmap version |
|
|
| `command_line()` | - | `str` | Nmap command that was executed |
|
|
|
|
#### Scanner Result Access
|
|
```python
|
|
scanner[host].state() # Host state: 'up' or 'down'
|
|
scanner[host].all_protocols() # ['tcp', 'udp']
|
|
scanner[host][proto].keys() # List of port numbers
|
|
scanner[host][proto][port] # Port info dict with keys: state, name, product, version
|
|
scanner[host].hostnames() # [{'name': 'hostname', 'type': 'PTR'}]
|
|
scanner[host]['osmatch'] # OS detection results
|
|
```
|
|
|
|
### Common Nmap Arguments
|
|
| Argument | Purpose |
|
|
|----------|---------|
|
|
| `-sS` | TCP SYN scan (half-open, requires root) |
|
|
| `-sV` | Service version detection |
|
|
| `-sC` | Run default NSE scripts |
|
|
| `-O` | OS fingerprinting |
|
|
| `-sn` | Host discovery only (no port scan) |
|
|
| `--script vuln` | Run vulnerability detection scripts |
|
|
| `-T0` to `-T5` | Timing templates (paranoid to insane) |
|
|
| `--min-rate N` | Minimum packets per second |
|
|
| `-PE -PP -PS` | ICMP echo, timestamp, TCP SYN discovery probes |
|
|
| `-oX file` | Output results in XML format |
|
|
|
|
### Output Parsing
|
|
```python
|
|
scanner.csv() # CSV-formatted scan results
|
|
scanner.scaninfo() # Scan metadata (type, services scanned)
|
|
scanner.scanstats() # Timing and host statistics
|
|
```
|
|
|
|
## References
|
|
- python-nmap docs: https://pypi.org/project/python-nmap/
|
|
- Nmap Reference Guide: https://nmap.org/book/man.html
|
|
- NSE Script Categories: https://nmap.org/nsedoc/categories/
|