Introduction
In the summer of 2026, the term "vibe coding" has evolved from a niche joke into a practical methodology for rapid prototyping of sensor-driven applications. One of the most striking demonstrations of this trend is the emergence of affordable, software-defined radio (SDR) tools that allow hobbyists and security professionals to detect drones and passively map WiFi networks through walls. Among these, the QuadRF platform stands out as a versatile, open-source-compatible RF sensing system that can spot unmanned aerial vehicles (UAVs) and reveal hidden WiFi access points with remarkable accuracy.
This article provides an expert, data-driven analysis of how QuadRF achieves these feats, what the technical limitations are, and how you can replicate such experiments with minimal hardware investment. We will explore the physics of radio frequency (RF) sensing, the signal processing pipeline, real-world case studies, and the ethical implications of seeing through walls with electromagnetic waves.
The Physics of RF Sensing: How QuadRF Works
QuadRF is a multi-channel SDR platform that operates in the frequency range of 70 MHz to 6 GHz, covering key bands for drone telemetry (2.4 GHz, 5.8 GHz) and WiFi (2.4 GHz, 5 GHz, and 6 GHz for WiFi 6E). Unlike traditional spectrum analyzers that cost thousands of dollars, QuadRF leverages direct sampling at up to 80 MSPS (mega-samples per second) and a 16-bit ADC (analog-to-digital converter), providing a dynamic range of over 100 dB.
Key Specifications
| Parameter | QuadRF Value | Typical Consumer SDR (RTL-SDR) |
|---|---|---|
| Frequency Range | 70 MHz – 6 GHz | 24 MHz – 1.7 GHz |
| Bandwidth | Up to 40 MHz (2 channels) | 3.2 MHz (single channel) |
| ADC Resolution | 16 bits | 8 bits |
| Dynamic Range | >100 dB (typical) | ~60 dB |
| Noise Figure | <3 dB | ~6 dB |
| Price (USD, 2026) | $599 | $25 |
This hardware advantage allows QuadRF to detect weak signals—such as a drone broadcasting at 10 mW from 500 meters away—that would be buried in the noise floor on a cheap SDR.
How Spotting Drones Works
Drone detection via RF relies on capturing the control link (usually 2.4 GHz for consumer drones like DJI models) or the video downlink (5.8 GHz for FPV drones). QuadRF performs a wideband scan across these bands and uses a technique called cyclostationary feature detection to distinguish drone signals from WiFi, Bluetooth, or microwave oven interference.
Step-by-step process:
1. Wideband capture: QuadRF records 20 MHz of spectrum in the 2.4–2.5 GHz band for 1 second.
2. FFT and spectral analysis: A 2048-point fast Fourier transform (FFT) is applied, producing a power spectral density (PSD) estimate.
3. Feature extraction: Drone signals exhibit unique cyclic frequencies (e.g., 1 kHz for DJI OcuSync 2.0) due to their OFDM (orthogonal frequency-division multiplexing) modulation.
4. Machine learning classifier: A lightweight convolutional neural network (CNN) trained on 10,000 labeled samples (drone vs. non-drone) achieves 97% accuracy in real-time classification.
In a 2025 benchmark published by the IEEE Sensors Journal, QuadRF-based systems matched the detection range of a commercial DroneShield ($15,000) at a fraction of the cost, detecting a DJI Mavic 3 at 1.2 km in clear line-of-sight conditions.
Seeing WiFi Through Walls: Passive Channel Mapping
The phrase "see WiFi through my wall" is not about visual imaging but passive WiFi sensing—mapping the location and activity of access points (APs) and clients by analyzing received signal strength (RSSI) and channel state information (CSI) from a single observation point. QuadRF captures beacon frames (periodic packets broadcast by APs) and uses angle-of-arrival (AoA) estimation from its two antennas spaced 10 cm apart.
Principle:
- The phase difference of the incoming signal between the two antennas gives the AoA.
- By combining AoA with RSSI (which decays with distance), a 2D heatmap of AP locations can be created.
- QuadRF’s 16-bit ADC resolves phase differences as small as 0.1°, enabling angular accuracy of ±2°.
In a controlled experiment in a 100 m² apartment with 3 rooms, QuadRF correctly identified the room for 7 out of 8 WiFi APs (including hidden SSIDs) within 30 seconds of scanning. The system cannot reconstruct images of objects behind walls, but it can reveal the number of active devices, their approximate location, and the network topology.
Practical Example: Setting Up a QuadRF for Drone Detection
Here is a step-by-step guide to replicate a basic drone detection system using QuadRF and open-source software (Python 3.11+, GNU Radio 3.10).
Hardware Required
- QuadRF board (any variant with 2+ channels)
- Raspberry Pi 5 (or any Linux PC with USB 3.0)
- Two omnidirectional antennas (2.4 GHz, gain 5 dB)
- Power over Ethernet (PoE) injector (optional for remote placement)
Software Setup
- Install the QuadRF driver and Python bindings:
bash pip install quadrf-python - Clone the drone detection repository from the official QuadRF GitHub (active as of July 2026):
bash git clone https://github.com/quadrf/drone-detector cd drone-detector - Run the wideband scanner:
```python
from quadrf import QuadRF, SpectrumAnalyzer
import numpy as np
rf = QuadRF()
rf.set_frequency(2.45e9) # Center at 2.45 GHz
rf.set_sample_rate(20e6)
rf.set_gain(40) # dB
samples = rf.capture(duration=1.0) # 1 second of IQ data
analyzer = SpectrumAnalyzer(samples, sample_rate=20e6)
psd = analyzer.compute_psd()
# Apply ML classifier here...
```
4. The classifier outputs a confidence score. If >0.9, the system triggers an alert (e.g., via MQTT to a Telegram bot).
Real-World Results
In a field test near a suburban park (July 2026), the setup detected a DJI Mini 3 Pro at 800 meters with 94% confidence. False positives occurred from nearby WiFi routers (about 3 per hour), which were filtered out by the cyclostationary feature detector.
Seeing WiFi Through Walls: A Codeless Approach
For non-programmers, QuadRF offers a web-based GUI called QuadRF Dashboard (accessible via browser on the same network). The dashboard provides a real-time spectrum waterfall and a "WiFi mapper" tab that automatically scans channels 1–11 (2.4 GHz) and 36–165 (5 GHz).
To map WiFi through a wall:
1. Place QuadRF 1 meter from the wall you want to "see" through.
2. Open the Dashboard and click "Start WiFi Scan."
3. Wait 10 seconds. The dashboard shows a list of detected APs with estimated distance and angle.
4. The map view (top-down) displays each AP as a dot, color-coded by signal strength (green = strong, red = weak).
In a test inside a typical office building (reinforced concrete walls, 20 cm thick), QuadRF detected 12 APs from adjacent rooms, with an average distance error of 1.5 meters compared to ground truth.
Technical Limitations and Accuracy
While QuadRF is impressive, it is not a magic x-ray device. Key limitations include:
- Material attenuation: Concrete walls reduce signal by 15–25 dB; metal studs cause multipath reflections that degrade AoA accuracy.
- Range: For drone detection, the maximum range is ~1.5 km (line-of-sight) for consumer drones with 100 mW output. Military drones with spread-spectrum modulation (e.g., frequency hopping) are harder to detect.
- Legal restrictions: In many jurisdictions (EU, parts of the US), passive RF monitoring of WiFi networks without explicit consent may violate wiretapping laws. Always check local regulations.
Comparative Accuracy Table
| Metric | QuadRF | Commercial Drone Detector (DroneShield) | WiFi Scanner (inSSIDer) |
|---|---|---|---|
| Drone detection range | 1.2 km (DJI Mavic 3) | 2.0 km | N/A |
| False positive rate | 3/hr | <1/hr | N/A |
| WiFi AP localization accuracy | ±1.5 m | N/A | ±5 m (RSSI only) |
| Hidden SSID detection | Yes | N/A | No |
| Price | $599 | $15,000 | Free |
Real-World Case Studies
Case 1: Perimeter Security at a Small Factory
A manufacturing plant in Germany deployed a QuadRF system in June 2026 to monitor for unauthorized drone flights near sensitive areas. Over two weeks, the system detected 14 drones (all hobbyist models) with zero false positives after tuning the ML threshold to 0.95. The factory integrated the QuadRF output into their existing CCTV dashboard via a REST API.
Case 2: Home Network Audit
A cybersecurity consultant used QuadRF to perform a passive audit of a client's home network. The scan revealed a hidden WiFi extender in the neighbor's apartment that was broadcasting on the same channel as the client's router, causing interference. By relocating the client's router to channel 11 (less congested), throughput improved by 40%.
Ethical and Legal Considerations
Seeing WiFi through walls raises privacy concerns. While passive sniffing of beacon frames (which are unencrypted) is technically legal in most countries under the Electronic Communications Privacy Act (ECPA) in the US, actively decoding encrypted payloads or capturing client-specific data (MAC addresses) may violate privacy laws. Always anonymize MAC addresses (e.g., by hashing them) in your logs.
QuadRF’s official documentation explicitly warns against using the device for surveillance without consent. As a responsible practitioner, limit your scans to your own property or obtain written permission.
Future Directions: QuadRF and AI Integration
By mid-2026, the QuadRF community has released a pre-trained model for WiFi-based human presence detection—analyzing how CSI changes when a person moves behind a wall. This technique, known as RF sensing, can detect motion through walls with 90% accuracy at distances up to 10 meters. The model runs on the QuadRF’s onboard FPGA (Xilinx Artix-7), enabling real-time inference without a PC.
ASI Biont поддерживает подключение к QuadRF через API — подробнее на asibiont.com/courses. This integration allows users to trigger automated workflows (e.g., sending an email alert when a drone is detected) without writing a single line of code.
Conclusion
QuadRF represents a paradigm shift in accessible RF sensing. For $599, it offers capabilities that rival professional equipment costing an order of magnitude more. Whether you are a security professional monitoring drone incursions, a network engineer troubleshooting WiFi interference, or a hobbyist exploring the physics of radio waves, QuadRF provides a robust, hackable platform.
The key takeaways:
- QuadRF can spot drones by detecting their unique OFDM signatures at ranges up to 1.2 km.
- QuadRF can see WiFi through walls by passively mapping AP locations with ±2° angular accuracy.
- The system is open-source-friendly, with Python bindings and a web GUI that lower the barrier to entry.
As vibe coding continues to blur the line between amateur and professional, tools like QuadRF empower individuals to build sophisticated sensing applications with minimal investment. The only limit is your imagination—and the law.
Comments