A UAV Remote ID Spoofing Defense System
Project description
Argus
A UAV Remote ID Spoofing Defense System.
#UAV Swarm Security โ #Remote ID Spoofing โ #Graph-Theoretic Modeling โ #Cryptographic Defenses
๐ Table of Contents
๐ญ Overview
โจ Key Features
๐ฆ Installation
๐ Quick Start
๐งช Testing
๐ Project Structure
๐ Documentation
๐ฌ Research Background
๐ค Contributing
๐ References
๐ญ Overview
Argus is a research framework for investigating UAV swarm vulnerabilities to Remote ID spoofing attacks. It combines graph-theoretic analysis with cryptographic defenses to detect and prevent:
| ๐ Paper | ๐จ๐ปโ๐ซ Presentation |
|---|---|
|
|
|
โจ Key Features
๐ฎ Simulation & Attacks
- Swarm Simulation โ Dynamic graph-based UAV network modeling with configurable parameters
- Attack Injection โ Multiple spoofing scenarios with ground truth tracking
โ๏ธ Attack Types
| Attack Type | Description |
|---|---|
| ๐ญ Phantom UAV Injection | Non-existent UAVs broadcasting fake Remote ID messages |
| ๐ Position Falsification | Legitimate UAVs reporting spoofed GPS coordinates |
| ๐ Coordinated Attacks | Multiple synchronized spoofers disrupting swarm consensus |
๐ Detection Methods
| Method | Description | Performance |
|---|---|---|
| ๐ Spectral Analysis | Laplacian eigenvalue anomaly detection | Fast & lightweight |
| ๐ฏ Centrality-Based | Graph centrality metric analysis | Good for structural changes |
| ๐ค Machine Learning | Node2Vec embeddings + Isolation Forests | Adaptive detection |
| ๐ Cryptographic | Ed25519 signature verification | 100% TPR, 0% FPR! |
๐ Analysis & Visualization
- Consensus Analysis โ Quantify attack impact on swarm coordination
- Publication-Quality Plots โ ROC curves, heatmaps, comparisons (300 DPI PDF+PNG)
- Live Real-Time Animation โ Watch UAVs move and attacks unfold with PySide6 (Qt6)
- Interactive Detection Overlay โ Enhanced visualization with detection status
๐ฆ Installation
Prerequisites
๐ Python 3.10 or higher with pip or uv package manager
From PyPI (Recommended)
# Install from PyPI
pip install argus_uav
# Verify installation
argus --help
From Source (For Development)
# Clone the repository
git clone https://github.com/Sang-Buster/Argus.git
cd Argus
# Create virtual environment
uv sync
source venv/bin/activate # On Windows: venv\Scripts\activate
# Verify installation
argus --help
pytest tests/ -v
๐ Quick Start
๐๏ธ Interactive CLI (Recommended)
The easiest way to get started:
# Launch interactive mode
argus
# Quick command-line usage
argus --attack phantom --detectors all --mode comparison
# See all options
argus --help
๐ See CLI User Guide for complete documentation.
The CLI provides:
- โจ Interactive mode โ Guided experience for beginners
- ๐ฌ Live visualization โ Watch attacks and detection in real-time
- ๐ Performance comparison โ Automated benchmarking and plots
- ๐ฏ Full coverage โ Test any combination of 3 attacks ร 4 detection methods
1๏ธโฃ Simulate a Clean UAV Swarm
from argus_uav.core.swarm import Swarm
import numpy as np
# Create reproducible simulation
rng = np.random.default_rng(seed=42)
swarm = Swarm(
num_uavs=20,
comm_range=100.0,
bounds=(1000, 1000, 200),
rng=rng
)
# Run for 10 seconds
for t in range(10):
swarm.step(dt=1.0)
print(f"Time {t}s: {swarm.get_graph().number_of_edges()} links")
2๏ธโฃ Inject and Detect Phantom UAVs
from argus_uav.attacks.phantom_uav import PhantomInjector
from argus_uav.attacks import AttackScenario, AttackType
from argus_uav.detection.spectral import SpectralDetector
# Configure phantom attack
attack = AttackScenario(
attack_type=AttackType.PHANTOM,
start_time=5.0,
duration=10.0,
phantom_count=3
)
# Setup detection
detector = SpectralDetector()
detector.train([swarm.get_graph().copy() for _ in range(20)])
# Run with attack
injector = PhantomInjector()
for t in range(20):
if attack.is_active(float(t)):
injector.inject(swarm, attack, float(t))
swarm.step(dt=1.0)
result = detector.detect(swarm.get_graph())
metrics = result.compute_metrics()
print(f"TPR: {metrics['tpr']:.2%}, FPR: {metrics['fpr']:.2%}")
For advanced experiments with custom configurations, use the Python API directly. See the
examples/directory for comprehensive demonstrations.
3๏ธโฃ Compare All Detection Methods
# Run performance comparison with all detectors
argus --attack phantom --detectors all --mode comparison
# Live visualization with specific detectors
argus --attack coordinated --detectors spectral crypto --mode live
# Both live and comparison modes
argus --attack position --detectors centrality --mode both
# Custom swarm configuration
argus --attack phantom --detectors all --mode comparison \
--num-uavs 50 --comm-range 150
๐งช Testing
# Run all tests
pytest tests/
# Run with coverage
pytest tests/ --cov=argus --cov-report=html
# Run specific test suites
pytest tests/unit/ # Unit tests only
pytest tests/integration/ # Integration tests only
pytest tests/performance/ # Performance benchmarks
๐ Project Structure
src/argus_uav/
โโโ ๐ฎ core/ # Simulation engine (UAV, swarm, Remote ID)
โโโ โ๏ธ attacks/ # Attack injection (phantom, position spoof, coordinated)
โโโ ๐ detection/ # Detection algorithms (spectral, centrality, ML)
โโโ ๐ crypto/ # Ed25519 signing and verification
โโโ ๐ค consensus/ # Swarm consensus algorithms
โโโ ๐ evaluation/ # Metrics, visualizations, ROC curves
โโโ ๐งช experiments/ # Experiment runner and configuration
โโโ ๐ ๏ธ utils/ # Random seeds, logging
tests/
โโโ unit/ # Unit tests for individual components
โโโ integration/ # End-to-end scenario tests
โโโ contract/ # Interface compliance tests
โโโ performance/ # Benchmark and profiling tests
assets/ # Images, paper, presentation
docs/ # Documentation and examples
examples/ # Example demonstrations and scripts
results/ # Experiment outputs (gitignored)
๐ Documentation
๐ Complete Documentation Index
Quick Links
| Guide | Description |
|---|---|
| ๐ Quickstart Guide | Get started in 10 minutes |
| ๐ Project Status | Complete status & features |
| ๐งฎ Algorithm Details | Theory and implementation |
| ๐ Data Formats | Specifications and schemas |
| ๐ References | 19 research paper citations |
๐ฌ Research Background
This project investigates defenses against Remote ID spoofing, a critical security challenge for UAV swarms. Remote ID is mandated by aviation authorities (FAA 14 CFR Part 89) but lacks authentication, making it vulnerable to falsified messages.
๐ฏ Key Research Questions
- Can graph-theoretic metrics detect topological anomalies from phantom UAVs?
- How effective is machine learning (Node2Vec + Isolation Forests) vs pure graph analysis?
- What is the performance overhead of Ed25519 cryptographic signing for real-time swarms?
- How do spoofing attacks impact swarm consensus algorithms?
๐ง Methodology
| Aspect | Approach |
|---|---|
| Simulation | Software-only UAV swarm modeling (no hardware required) |
| Attack Scenarios | Phantom injection, position falsification, coordinated spoofers |
| Detection | Spectral analysis, centrality metrics, ML embeddings |
| Defense | Ed25519 digital signatures for message authentication |
| Evaluation | TPR, FPR, detection latency, consensus error |
๐ค Contributing
This is a research project. Contributions are welcome!
๐ Areas of Interest
- ๐ง Additional detection algorithms (GNNs, threshold signatures)
- ๐ก Real-world Remote ID traffic datasets
- ๐ง Hardware integration (RTL-SDR, physical UAVs)
- ๐ Scalability optimizations for larger swarms
๐ References
- Peel, L., et al. (2015). "Detecting Change Points in Evolving Networks"
- Olfati-Saber, R., & Murray, R. M. (2004). "Consensus Problems in Networks"
- Grover, A., & Leskovec, J. (2016). "node2vec: Scalable Feature Learning"
- Liu, F. T., et al. (2008). "Isolation Forest"
- Bernstein, D. J., et al. (2012). "High-speed high-security signatures" (Ed25519)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file argus_uav-0.2.0.tar.gz.
File metadata
- Download URL: argus_uav-0.2.0.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26280a90cbeb9847027a5f8369033bdeee9b28758019077357117796cdea244b
|
|
| MD5 |
1b65d16feb79b32abd364d6ade47f2af
|
|
| BLAKE2b-256 |
d641c780926c720fea5e3a4675da13117a98b7ca87f70e94d94db39bbca628fb
|
File details
Details for the file argus_uav-0.2.0-py3-none-any.whl.
File metadata
- Download URL: argus_uav-0.2.0-py3-none-any.whl
- Upload date:
- Size: 69.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5b5893ccf552d3189376e0d8ec10d45b3f122a1c634989c994673bbf4866c1
|
|
| MD5 |
ec301633d442b1338ba02761977ce0d0
|
|
| BLAKE2b-256 |
5cb12df5247d5c4bd79264954c2a90fb7949b811d2c259099c01a6c5d7fe9fd7
|