Introduction
The electromagnetic spectrum is crowded with signals — Wi-Fi, Bluetooth, Zigbee, LoRa, proprietary IoT protocols, garage door openers, car key fobs, weather sensors, and countless other wireless devices. Understanding what’s being transmitted around you requires specialized signal analysis tools that can capture, visualize, demodulate, and even reverse-engineer unknown radio protocols.
Three open-source tools form the backbone of RF signal analysis: Universal Radio Hacker (URH) — a full-featured protocol reverse-engineering suite with 12,446 GitHub stars; SigDigger — a real-time signal analyzer with a rich visualization toolkit (2,394 stars); and inspectrum — a fast, focused offline signal viewer (2,462 stars).
This guide compares their architectures, visualization capabilities, protocol analysis features, and deployment options to help you choose the right tool for your RF analysis workflow.
Comparison Table
| Feature | Universal Radio Hacker | SigDigger | inspectrum |
|---|---|---|---|
| GitHub Stars | 12,446 | 2,394 | 2,462 |
| Language | Python/Cython | C++/Qt | C++/Qt |
| Last Updated | December 2025 | February 2026 | Active |
| Real-time Capture | Yes (native SDR support) | Yes (Suscan engine) | No (offline only) |
| Protocol Analysis | Full reverse-engineering suite | Basic demodulation | None (visual only) |
| Modulation Demod | ASK, FSK, PSK, GFSK, QPSK | AM, FM, SSB, IQ | IQ visualization only |
| Signal Visualization | Waveform, spectrogram, constellation | Waterfall, spectrogram, 3D, constellation | Spectrogram, amplitude, phase, IQ |
| Automatic Decoding | Yes (auto-detection of protocol parameters) | No | No |
| Fuzzing/Generation | Yes (transmit crafted signals) | No | No |
| Scripting/API | Python API + CLI | Lua scripting | No |
| Docker Support | Community images | Manual build | Manual build |
| GUI Quality | Functional (Python/Qt) | Modern (C++/Qt) | Clean minimal (C++/Qt) |
| Resource Usage | Moderate (500 MB - 1 GB) | Low-Moderate (200-500 MB) | Very Low (100-200 MB) |
| Learning Curve | Moderate-Steep | Easy-Moderate | Easy |
Universal Radio Hacker: The Complete Protocol Reverse-Engineering Suite
URH is the most ambitious RF analysis tool in the open-source ecosystem. It goes far beyond visualization — it’s a complete wireless protocol reverse-engineering platform that covers the entire workflow from signal capture to protocol decoding to signal generation.
Architecture
URH’s architecture mirrors the OSI model for wireless protocols:
| |
Installation & Key Features
| |
URH’s standout features include:
1. Automatic Protocol Parameter Detection URH can analyze a captured signal and automatically determine the modulation type, baud rate, preamble, sync word, and bit encoding — saving hours of manual analysis.
| |
2. Protocol Fuzzing & Signal Generation Unlike visualization-only tools, URH can generate and transmit crafted signals for protocol testing:
| |
3. Full Protocol Stack Interpretation URH goes beyond raw bits — you can define protocol fields (preamble, address, command, payload, CRC), label them, and build a structured interpretation of the protocol. This is invaluable when reverse-engineering proprietary IoT devices, remote controls, or industrial sensors.
Docker Deployment
| |
SigDigger: Real-Time Signal Analysis with Rich Visualization
SigDigger emphasizes real-time signal capture and visualization. Built on the Suscan signal analysis core and the Sigutils DSP library, it provides a modern Qt interface for exploring the spectrum in real time.
Key Visualization Modes
SigDigger’s strength is its rich set of real-time visualization tools:
- Waterfall Display — scrolling spectrogram showing frequency vs time vs amplitude
- 3D Spectrogram — isometric view for pattern recognition
- IQ Constellation — real-time phase/amplitude scatter plot
- Symbol Constellation — post-demodulation symbol plot for modulation analysis
- Eye Diagram — intersymbol interference visualization
- Channel Inspector — per-frequency power and modulation analysis
Installation
| |
Automated Signal Classification
SigDigger can automatically classify signals by modulation type using its built-in inspector:
| |
Key Strengths
- Real-time visualization — the best waterfall/spectrogram in open-source SDR
- Low latency — C++/Qt implementation with hardware-accelerated rendering
- Multiple simultaneous views — waterfall + constellation + eye diagram at once
- Signal classification — automatic modulation type detection
- Lua scripting — extend functionality with custom scripts
inspectrum: Fast Offline Signal Viewer
inspectrum is a minimal, focused signal viewer designed for offline analysis of IQ recordings. It’s the tool you reach for when you’ve already captured a signal and want to examine it in detail — identifying modulation type, measuring symbol rates, and extracting bit patterns.
Why inspectrum Matters
While URH and SigDigger are full-featured suites, inspectrum’s minimalism is its strength:
- Sub-second rendering of multi-gigabyte IQ files
- Extremely low memory usage — 100-200 MB even for large files
- Precise cursor measurements — measure symbol periods, frequency offsets, and timing
- Multiple plot types — amplitude, phase, frequency, IQ constellation with time cursors
Installation
| |
Key Workflow
inspectrum excels at this specific workflow:
- Load a recorded IQ file
- Add plots — amplitude, phase, frequency traces
- Zoom and measure — use time cursors to measure symbol periods
- Extract symbols — derive the digital bitstream from the analog waveform
- Export bits — output decoded bits for protocol analysis in other tools
Integration with Other Tools
Many RF analysts use inspectrum as the visualization frontend and then feed extracted bits into URH for protocol analysis or into custom Python scripts for decoding:
| |
Why Self-Host Your RF Analysis Lab?
Radio frequency analysis isn’t just for signals intelligence professionals — it’s increasingly important for IoT developers, security researchers, and hardware hackers who need to understand how wireless devices communicate. A self-hosted RF analysis setup gives you complete control over your signal processing pipeline.
Privacy and Security
When you analyze wireless signals — especially in industrial, medical, or security contexts — the captured data can be sensitive. Self-hosting ensures your signal recordings never leave your lab. Cloud-based SDR services require uploading IQ recordings to third-party servers; a local setup keeps everything on-premises.
Cost-Effective Scaling
An RTL-SDR dongle ($30) plus open-source software gives you capabilities that would cost thousands in commercial spectrum analyzers. For exploring the broader reverse-engineering ecosystem beyond RF, check our binary analysis and reverse engineering guide. For wireless network analysis specifically, see our open-source wireless network controllers comparison.
FAQ
Do I need an SDR to use these tools?
inspectrum works purely with prerecorded IQ files — no SDR required. SigDigger is designed for live capture but can also analyze recordings. URH supports both live capture and file-based analysis with or without an SDR. You can download sample IQ recordings from sites like sigidwiki.com to practice without hardware.
Which tool is best for reverse-engineering an unknown IoT device?
Start with URH. Capture the device’s transmissions, use the automatic parameter detection to identify modulation and timing, then decode the bit patterns in the protocol analyzer. For tricky signals, use inspectrum first to get a clean visualization and measure symbol timing, then import the measurements into URH for protocol-level analysis.
Can these tools decode encrypted signals?
They can visualize and help you understand the physical-layer characteristics of encrypted signals (modulation, baud rate, packet structure), but they cannot break encryption. URH can capture and replay encrypted packets if you’re testing replay attacks on devices that don’t use rolling codes, but this is for security research purposes only.
What’s the difference between SigDigger and a regular SDR receiver?
A regular SDR receiver (like Gqrx or SDR++) focuses on listening to audio — AM/FM broadcast, ham radio, shortwave. SigDigger is an analysis tool — it visualizes the raw RF waveform, measures modulation parameters, and classifies signals by type. It’s designed for engineers and researchers, not casual listening.
Can I run these on a Raspberry Pi?
inspectrum runs well on a Pi 4 with 2 GB RAM for file sizes under 500 MB. SigDigger can run but the GUI may be sluggish without hardware acceleration. URH is the most demanding — a Pi 4 with 4 GB RAM is the minimum, and complex protocol analysis may be slow. For serious RF analysis, a desktop or laptop with 8+ GB RAM is recommended.
What frequency ranges can these tools analyze?
With an RTL-SDR: 24 MHz to 1.7 GHz (covers ISM bands, LoRa, Zigbee, GSM, GPS, ADS-B). With an Airspy R2: 24 MHz to 1.8 GHz. With a HackRF One: 1 MHz to 6 GHz (covers Wi-Fi, Bluetooth, 5 GHz ISM). The software itself has no frequency limitation — it processes whatever the SDR hardware captures.
💰 想测试你的市场判断力?我用 Polymarket 做预测市场交易——这是全球最大的预测市场平台,从大选结果到技术监管时间线,什么都可以押注。和赌博不同,这是真正的信息市场:你懂的信息越多,胜率越高。我靠预测技术相关事件的走向已经赚了不少。用我的邀请链接注册:Polymarket.com