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
56 lines
2.0 KiB
Markdown
56 lines
2.0 KiB
Markdown
# API Reference: Wireless Security Assessment with Kismet
|
|
|
|
## Kismet REST API Endpoints
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/session/check_login` | POST | Authenticate with username/password |
|
|
| `/system/status.json` | GET | Server status and statistics |
|
|
| `/devices/summary/devices.json` | POST | Query devices with field selection |
|
|
| `/devices/by-key/{key}/device.json` | GET | Get single device details |
|
|
| `/phy/phy80211/ssids/views/ssids.json` | GET | All detected SSIDs |
|
|
| `/alerts/all_alerts.json` | GET | All Kismet alerts |
|
|
| `/datasource/list_interfaces.json` | GET | Available capture interfaces |
|
|
|
|
## Device Fields
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `kismet.device.base.macaddr` | Device MAC address |
|
|
| `kismet.device.base.name` | SSID or device name |
|
|
| `kismet.device.base.type` | `Wi-Fi AP`, `Wi-Fi Client`, etc. |
|
|
| `kismet.device.base.manuf` | Manufacturer (OUI lookup) |
|
|
| `kismet.device.base.channel` | Operating channel |
|
|
| `kismet.device.base.crypt` | Encryption type |
|
|
| `kismet.device.base.signal` | Signal strength data |
|
|
| `kismet.device.base.first_time` | First seen timestamp |
|
|
| `kismet.device.base.last_time` | Last seen timestamp |
|
|
|
|
## Authentication
|
|
|
|
| Method | Header/Cookie |
|
|
|--------|--------------|
|
|
| API Key | `Cookie: KISMET=<api_key>` |
|
|
| Login | POST `/session/check_login` with JSON `{username, password}` |
|
|
|
|
## Kismet CLI
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `kismet -c wlan0` | Start Kismet with capture source |
|
|
| `kismet --override wardrive` | Use wardrive configuration |
|
|
| `kismet_cap_linux_wifi` | Linux Wi-Fi capture helper |
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `requests` | >=2.28 | Kismet REST API client |
|
|
| `json` | stdlib | Parse API responses |
|
|
|
|
## References
|
|
|
|
- Kismet Documentation: https://www.kismetwireless.net/docs/readme/intro/kismet/
|
|
- Kismet REST API: https://www.kismetwireless.net/docs/api/rest_api/
|
|
- Kismet GitHub: https://github.com/kismetwireless/kismet
|