Secure • Simple • Reliable Data Streaming
FoxPipe is a minimalist CLI tool for end-to-end encrypted, optionally compressed data transfer between two machines — no setup, no accounts, just a shared password.
v2.0 replaces the v1 handshake (a password-derived key sent implicitly over the wire) with a PAKE-based handshake providing forward secrecy. v2 is not wire-compatible with v1 — both sides must be on v2. A version mismatch fails cleanly with an explicit error rather than silently downgrading.
Simple No servers, no login. Just run sender and receiver.
Efficient
Built-in zlib streaming compression reduces bandwidth usage automatically.
Secure by Design Uses a SPAKE2 PAKE handshake (never sends the password or a password hash over the wire) combined with an ephemeral X25519 key exchange for forward secrecy, then AES-256-GCM (AEAD) to encrypt the actual stream.
Resilient Includes chunk limits, decompression guards, session validation, and timeouts.
Install directly from PyPI:
pip install foxpipe
Start this first:
foxpipe receive 8080 -p "secure-pass" > backup.sql
Allow external connections:
foxpipe receive 8080 -p "secure-pass" --public > backup.sql
cat backup.sql | foxpipe send 192.168.1.5 8080 -p "secure-pass"
# Sender
tar -cf - ./project | foxpipe send 1.2.3.4 9000 -p secret
# Receiver
foxpipe receive 9000 -p secret | tar -xf -
foxpipe send 1.2.3.4 8080 -p secret --file image.iso
For already compressed files:
foxpipe send 1.2.3.4 8080 -p secret --file video.mp4 --no-compress
spake2 library) — proves both sides know the shared password without ever sending the password, or anything derived from it alone, over the wireHMAC-SHA256(K_confirm, direction_label) and verifies the peer’s tag (constant-time comparison). A wrong password is caught at the handshake, with zero bytes streamed — not discovered later via a failed AES-GCM decrypt.K_payloadv1’s Scrypt-derived-key handshake is gone. It was vulnerable to offline dictionary attacks (the salt was sent in cleartext, and the same static password-derived key both authenticated and encrypted every session — no forward secrecy). v2’s PAKE handshake closes both gaps.
The random
session_idis still sent on the wire but is no longer cryptographically load-bearing — every connection already gets a fresh, unique session key from the PAKE + X25519 exchange, which supersedes what session-ID binding was doing in v1. It’s kept as informational metadata only.
--limit (e.g., --limit 100 for 100GB).# Receiver
foxpipe receive 9000 -p pass --public > file.txt
# Sender
foxpipe send <IP> 9000 -p pass --file file.txt
Build simple tools that are hard to misuse and easy to trust.