-
-
Notifications
You must be signed in to change notification settings - Fork 347
π€ Installation on Android (Termux)
H9 edited this page Sep 11, 2026
·
1 revision
WireTapper can run on Android via Termux, using pip.
pkg update && pkg upgradepkg install python gitpip install wiretapper --break-system-packageswiretapper startOr with custom parameters:
# Start on custom port and auto-open browser
wiretapper start --port 8080 --open-browser
# Run with python module syntax
python -m wiretapper start| π₯οΈ Interface | π URL |
|---|---|
| π‘ Main Signal Intelligence Dashboard |
http://localhost:8080/map-w (or http://localhost:8080/) |
| π΅ Bluetooth LE & RPA Radar Interface | http://localhost:8080/btscan |
Termux often fails to build the cryptography package from source because it needs Rust and native headers. Fix it with:
pkg install rust binutils python-cryptographyThen retry:
pip install wiretapper --break-system-packagesIf it still fails, install cryptography on its own first so pip picks up the pre-built package instead of compiling it:
pkg install python-cryptography
pip install wiretapper --break-system-packages --no-deps
pip install -r WireTapper.txt --break-system-packages| π οΈ Fix | |
|---|---|
error: can't find Rust compiler |
pkg install rust |
fatal error: 'openssl/opensslv.h' file not found |
pkg install openssl |
wiretapper: command not found |
Restart Termux, or add $PREFIX/bin to PATH
|
Permission denied on wireless scan |
Termux has limited raw wireless access on Android β some scan features may be restricted by the OS |
| Port already in use | Run with wiretapper start --port <other_port>
|