# INTERCEPT

Python 3.9+ MIT License Platform

Support the developer of this open-source project

Buy Me A Coffee

Signal Intelligence Platform
A web-based interface for software-defined radio tools.

Screenshot

--- ## Features - **Pager Decoding** - POCSAG/FLEX via rtl_fm + multimon-ng - **433MHz Sensors** - Weather stations, TPMS, IoT devices via rtl_433 - **Aircraft Tracking** - ADS-B via dump1090 with real-time map and radar - **Vessel Tracking** - AIS ship tracking with VHF DSC distress monitoring - **ACARS Messaging** - Aircraft datalink messages via acarsdec - **Listening Post** - Frequency scanner with audio monitoring - **Satellite Tracking** - Pass prediction using TLE data - **ADS-B History** - Persistent aircraft history with reporting dashboard (Postgres optional) - **WiFi Scanning** - Monitor mode reconnaissance via aircrack-ng - **Bluetooth Scanning** - Device discovery and tracker detection - **Spy Stations** - Number stations and diplomatic HF network database --- ## Installation / Debian / Ubuntu / MacOS ``` **1. Clone and run:** ```bash git clone https://github.com/smittix/intercept.git cd intercept ./setup.sh sudo -E venv/bin/python intercept.py ``` ### Docker (Alternative) ```bash git clone https://github.com/smittix/intercept.git cd intercept docker compose up -d ``` > **Note:** Docker requires privileged mode for USB SDR access. See `docker-compose.yml` for configuration options. ### ADS-B History (Optional, Postgres) The ADS-B history dashboard persists aircraft messages and snapshots to Postgres. 1. Enable history and DB connection: ```bash export INTERCEPT_ADSB_HISTORY_ENABLED=true export INTERCEPT_ADSB_DB_HOST=adsb_db export INTERCEPT_ADSB_DB_PORT=5432 export INTERCEPT_ADSB_DB_NAME=intercept_adsb export INTERCEPT_ADSB_DB_USER=intercept export INTERCEPT_ADSB_DB_PASSWORD=intercept ``` 2. Start the services (includes Postgres in `docker-compose.yml`): ```bash docker compose up -d ``` 3. Open **/adsb/history** for the reporting dashboard and headless start/stop controls. ### Local Fixes Branch (Optional) If you keep local changes (e.g., custom health checks), use a separate branch and rebase it after updates: ```bash git fetch origin git checkout local-fixes git rebase origin/main ``` ### Open the Interface After starting, open **http://localhost:5050** in your browser. The username and password is admin:admin The credentials can be change in the ADMIN_USERNAME & ADMIN_PASSWORD variables in config.py --- ## Hardware Requirements | Hardware | Purpose | Price | |----------|---------|-------| | **RTL-SDR** | Required for all SDR features | ~$25-35 | | **WiFi adapter** | Must support promiscuous (monitor) mode | ~$20-40 | | **Bluetooth adapter** | Device scanning (usually built-in) | - | | **GPS** | Any Linux supported GPS Unit | ~10 | Most features work with a basic RTL-SDR dongle (RTL2832U + R820T2). | :exclamation: Not using an RTL-SDR Device? | |----------------------------------------------- |Intercept supports any device that SoapySDR supports. You must however have the correct module for your device installed! For example if you have an SDRPlay device you'd need to install soapysdr-module-sdrplay. | :exclamation: GPS Usage | |----------------------------------------------- |gpsd is needed for real time location. Intercept automatically checks to see if you're running gpsd in the background when any maps are rendered. --- ## Discord Server

Join our Discord

--- ## Documentation - [Usage Guide](docs/USAGE.md) - Detailed instructions for each mode - [Hardware Guide](docs/HARDWARE.md) - SDR hardware and advanced setup - [Troubleshooting](docs/TROUBLESHOOTING.md) - Common issues and solutions - [Security](docs/SECURITY.md) - Network security and best practices --- ## Disclaimer This project was developed using AI as a coding partner, combining human direction with AI-assisted implementation. The goal: make Software Defined Radio more accessible by providing a clean, unified interface for common SDR tools. **This software is for educational and authorized testing purposes only.** - Only use with proper authorization - Intercepting communications without consent may be illegal - You are responsible for compliance with applicable laws --- ## License MIT License - see [LICENSE](LICENSE) ## Author Created by **smittix** - [GitHub](https://github.com/smittix) ## Acknowledgments [rtl-sdr](https://osmocom.org/projects/rtl-sdr/wiki) | [multimon-ng](https://github.com/EliasOenal/multimon-ng) | [rtl_433](https://github.com/merbanan/rtl_433) | [dump1090](https://github.com/flightaware/dump1090) | [AIS-catcher](https://github.com/jvde-github/AIS-catcher) | [acarsdec](https://github.com/TLeconte/acarsdec) | [aircrack-ng](https://www.aircrack-ng.org/) | [Leaflet.js](https://leafletjs.com/) | [Celestrak](https://celestrak.org/) | [Priyom.org](https://priyom.org/)