This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| AirSnitcher — Over-the-Air Exploitation PoC | |
| ============================================ | |
| Attack model: | |
| Attacker broadcasts a rogue AP. Pentester running AirSnitcher | |
| connects to investigate. AirSnitcher binds 0.0.0.0:8080 with zero | |
| auth — the attacker exploits it the instant they land on the network. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "context" | |
| "crypto/tls" | |
| "encoding/hex" | |
| "encoding/json" | |
| "flag" | |
| "fmt" |