-
-
Notifications
You must be signed in to change notification settings - Fork 346
π Installation & Configuration
H9 edited this page Sep 11, 2026
·
2 revisions
Follow these steps to set up and start WireTapper:
git clone https://github.com/h9zdev/WireTapper.git
cd WireTapperIt is recommended to use a Python virtual environment.
python3 -m venv venv
source venv/bin/activate
pip install -r WireTapper.txtpython3 -m venv venv
source venv/bin/activate
pip install -r WireTapper.txtpython -m venv venv
venv\Scripts\activate
pip install -r WireTapper.txtAPI credentials are saved directly into a local SQLite database (credentials.db). You can configure them in one of two ways:
-
π§ Option A:
.envFile (Automatic Seeding) Create or edit the.envfile in the root directory:
WIGLE_API_NAME=your_wigle_api_name
WIGLE_API_TOKEN=your_wigle_api_token
OPENCELLID_API_KEY=your_opencellid_api_key
SHODAN_API_KEY=your_shodan_api_key
CENSYS_API_ID=your_censys_api_id
CENSYS_API_SECRET=your_censys_api_secret⨠On application startup, `app.py` automatically initializes `credentials.db` and populates any missing keys from your `.env` file.
- βοΈ Option B: In-App Settings UI Open the application dashboard in your browser and click the βοΈ Settings gear icon in the navigation bar to enter or update your API credentials at runtime β without restarting the server.
sudo python3 app.pypython app.pypip install wiretapper --break-system-packages
| π₯οΈ Interface | π URL |
|---|---|
| π‘ Main Signal Intelligence Dashboard |
http://localhost:8080/map-w (or http://localhost:8080/) |
| π΅ Bluetooth LE & RPA Radar Interface | http://localhost:8080/btscan |
| π₯οΈ Platform | β¬οΈ Download |
|---|---|
| π§ Linux | WireTapper-Linux |
| π macOS | WireTapper-macOS |
| πͺ Windows | WireTapper-Windows.exe |
chmod +x WireTapper-Linux
sudo ./WireTapper-Linuxchmod +x WireTapper-macOS
xattr -d com.apple.quarantine WireTapper-macOS
sudo ./WireTapper-macOSRight-click WireTapper-Windows.exe β Run as administrator.
pip install wiretapper --break-system-packages
wiretapper start