Files
Anthropic-Cybersecurity-Skills/skills/performing-wireless-network-penetration-test/references/api-reference.md
T
mukul975 c21af3347e Complete folder anatomy for all 649 cybersecurity skills + update LICENSE to Mahipal
- 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
2026-03-11 00:22:12 +01:00

48 lines
1.4 KiB
Markdown

# API Reference: Wireless Network Penetration Testing
## Aircrack-ng Suite
| Tool | Description |
|------|-------------|
| `airmon-ng start <iface>` | Enable monitor mode |
| `airodump-ng <mon_iface>` | Scan for wireless networks |
| `airodump-ng --bssid <bssid> -c <ch> -w <prefix> <iface>` | Capture handshake |
| `aireplay-ng -0 5 -a <bssid> <iface>` | Deauthentication attack |
| `aircrack-ng <cap> -w <wordlist>` | Crack WPA/WPA2 handshake |
| `wash -i <iface>` | Detect WPS-enabled APs |
| `reaver -i <iface> -b <bssid>` | WPS PIN brute force |
## airodump-ng CSV Fields
| Column | Description |
|--------|-------------|
| BSSID | Access point MAC address |
| Channel | Operating channel |
| Encryption | WPA2, WPA, WEP, OPN |
| ESSID | Network name |
| Power | Signal strength (dBm) |
## Encryption Risk Levels
| Encryption | Risk |
|-----------|------|
| Open (OPN) | Critical - No encryption |
| WEP | Critical - Easily crackable |
| WPA (TKIP) | High - Deprecated |
| WPA2 (CCMP) | Medium - Dictionary attacks |
| WPA3 (SAE) | Low - Current standard |
## Python Libraries
| Library | Version | Purpose |
|---------|---------|---------|
| `subprocess` | stdlib | Execute aircrack-ng tools |
| `re` | stdlib | Parse tool output |
| `csv` | stdlib | Parse airodump CSV |
## References
- Aircrack-ng: https://www.aircrack-ng.org/doku.php
- Reaver: https://github.com/t6x/reaver-wps-fork-t6x
- WiFi Pineapple: https://www.hak5.org/products/wifi-pineapple