Erebrus is a decentralized VPN (DePIN) that protects your privacy and security with no hidden tracking or logging. Anyone worldwide can run a node — on a physical server or a VM — and earn incentives, helping build a censorship-resistant network.
For more details visit erebrus.io.
- WireGuard fast path with a SQLite-backed, race-free peer store.
- Stealth carriers for restrictive networks: when WireGuard's UDP is throttled or DPI-blocked, the same tunnel is wrapped in an embedded sing-box transport that looks like ordinary internet traffic:
- VLESS + REALITY (
:8443/tcp) — presents as a real TLS session to a borrowed SNI. - Hysteria2 (
:4443/udp) — QUIC/HTTP3 with optional Salamander obfuscation.
- VLESS + REALITY (
- libp2p identity + DID (
did:erebrus:<peerId>) derived from a mnemonic. - HTTP REST API (
/api/v2) and Prometheus/metrics. - Optional App-Hosting: expose a VPN-connected app to the public internet (host mode).
Linux only (x86_64 / arm64). A node needs a static, internet-routable public IP, real bandwidth, and open ports (9080/tcp, 51820/udp, 8443/tcp, 4443/udp). The installer verifies all three.
curl -fsSL https://erebrus.io/install.sh | bashYou'll be asked to pick a mode:
- docker (recommended) — zero-hassle: WireGuard + stealth carriers in a container.
- host — bare-metal via systemd; additionally supports App-Hosting (needs a wildcard DNS record, e.g.
*.apps.example.com → <node-ip>, so the gateway can mint per-app CNAMEs).
Non-interactive example:
curl -fsSL https://erebrus.io/install.sh | \
MNEMONIC="..." WG_ENDPOINT_HOST="vpn.example.com" bash -s -- --mode docker --yesThe REALITY server requires a build tag, wired into the Makefile and Dockerfile:
make build # go build -tags with_reality_server -o erebrus ./cmd/erebrus
make testEvery node serves a local dashboard at http://<node>:9080/ — intro, live stats
(connected users, bandwidth, throughput, uptime), and the API reference. It reads
only public, coarse aggregates (/api/v2/status, /api/v2/stats).
- docs/NODE.md — running, configuring, and managing a node (ports, env reference, troubleshooting).
- docs/ARCHITECTURE.md — package layout and the stealth carrier topology.
- docs/SECURITY-AUDIT.md — data-capture inventory, threat model, and operator hardening.
- docs/node-api.openapi.yaml — the
/api/v2REST contract.
The REST surface lives under /api/v2 (status, stats, peers CRUD, credentials); node status is public at GET /api/v2/status.