mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-16 12:45:17 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
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
|