Global Ghost Net Logo
Global Ghost Net
Keller Systems
Post-Quantum P2P WAN Fabric • Dual Operational Modes

Route through a mesh, not a company.

A self-organizing Rust daemon establishing quantum-resistant LAN-over-WAN tunnels. Zero centralized coordinators, zero telemetry, and zero single points of failure.

Global Public Swarm DEFAULT MODE

Traffic is fragmented into Reed-Solomon RS(2,1) shards dispersed across worldwide peers. Every participant increases routing entropy — rendering censorship and single-hop wiretapping mathematically impossible.

Private Overlay Mesh GHOST_PSK

Enforces a 256-bit symmetric pre-shared key. Cryptographically isolates your mesh exclusively to your authorized nodes, dropping unauthorized packets before consuming CPU cycles.

Operational Profiles & Deployment Targets

Engineered for distributed infrastructure, adversarial network environments, and teams that refuse third-party coordination planes.

MULTI-REGION INFRASTRUCTURE & HYBRID CLOUD

Sovereign WAN Interconnect

Interconnect distributed VPS instances, bare-metal servers, and edge nodes into a resilient L2/L3 overlay. Nodes discover peers autonomously via signed UDP multicasts and decentralized DNS round-robins with zero reliance on vendor infrastructure.

Profile: Zero third-party control plane. Network remains fully operational during upstream outages.
ADVERSARIAL & RESTRICTED NETWORKS

Stateful DPI & Censorship Invariance

Bypass deep packet inspection firewalls and state-sponsored Internet blockades. Payloads are divided into RS(2,1) shards dispatched concurrently across divergent IP paths; eavesdroppers at single transit taps observe only indecipherable random noise.

Profile: Normalized 512-byte frames with randomized jitter padding defeat statistical packet analysis.
DEFENSE, AIR-GAP & SECURE WORKSTATIONS

Post-Quantum Ephemeral Security

Protect critical communications against "Harvest Now, Decrypt Later" adversaries with dual-layer ML-KEM-512 and X25519 key encapsulation. Master secrets are pinned into non-swappable physical RAM with volatile zeroization on drop.

Profile: Zero swap leakage, constant-time replay defense, and non-extractable in-memory keys.

Architected for Uncompromising Secrecy

Built from ground up in memory-safe Rust to resist adversary state machines, traffic correlation, and quantum factoring.

01 / CRYPTOGRAPHIC SUITE

Hybrid Post-Quantum KEM

Handshakes compute classical ECDH (X25519) and lattice-based ML-KEM-512 (FIPS 203) in tandem. Dual-phase HKDF-SHA256 derivation renders transit streams completely immune to quantum cryptanalysis.

02 / PHYSICAL MEMORY HARDENING

Physical RAM Secret Pinning

Long-term private keys and ephemeral pre-shared secrets are pinned into non-pageable memory via VirtualLock (Windows) and mlock (POSIX), preventing page eviction to swap or crash dump files.

03 / TRAFFIC NORMALIZATION

512-Byte Frame Uniformity

Ghost Transport Frames (GTF) maintain strict 512-byte boundaries with ChaCha20-Poly1305 AEAD and trailing cryptographic jitter padding (0–64 bytes), depriving passive observers of payload size fingerprints.

04 / DISPATCH RESILIENCE

Multipath RS(2,1) Sharding

Stream payloads are segmented into Reed-Solomon RS(2,1) GF(256) shards routed across distinct peer paths. As long as any 2 of the 3 shards arrive, packets reconstruct instantaneously with zero retransmission delay.

05 / BYZANTINE ISOLATION

Poisson Anomaly Quarantine

Nodes benchmark peer timing against expected Poisson inter-arrival models. Peers attempting out-of-order injection, replay window tampering, or malformed PDU floods are instantly isolated.

06 / IDENTITY ANCHORING

Cryptographic Ed25519 Anchors

Nodes possess no fixed IP addresses. Identity is permanently anchored to Ed25519 public key fingerprints with issuer-signed cryptographic revocation lists, maintaining authentication across dynamic IP roaming.

Reed-Solomon RS(2,1) over GF(256)

Mathematical erasure coding running directly in your browser. Click any shard to drop it; observe the remaining two recover the exact payload.

Shard 0 • Data 1
Shard 1 • Data 2
Shard 2 • GF Parity
Reconstructed Payload (GF(256) Inversion)

Global Tunnel Frame (GTF) Wire Layout

Rigorous, fixed-width structure ensuring zero metadata leakage and constant-time parsing verification.

Offset (Bytes) Field Length Cryptographic / Functional Purpose
0x00 … 0x03 Session Token 4 Bytes Truncated session identifier, also mixed into the ChaCha20-Poly1305 AEAD nonce to eliminate cross-session collision.
0x04 … 0x07 Packet Counter 4 Bytes Monotonic sequence counter checked against an atomic sliding replay window. Duplicate or late datagrams are rejected in constant time.
0x08 … 0x08 Shard Index 1 Byte Reed-Solomon shard index: 0x00 (Data 0), 0x01 (Data 1), or 0x02 (GF(256) parity shard).
0x09 … 0x09 Control Flags 1 Byte Frame control flags: Bit 0 signals bulk 1472B frames, Bit 1 indicates unordered tunnel datagram routing.
0x0A … 0x1F3 Encrypted Shard 486 Bytes Ciphertext carrying the payload shard, encrypted with ChaCha20 authenticated encryption.
0x1F4 … 0x203 Poly1305 Tag 16 Bytes 128-bit Poly1305 MAC. A single altered bit across header and payload fails constant-time authentication.
0x204 … + Jitter Padding 0 – 64 Bytes Cryptographically random trailing noise injected per-packet to frustrate downstream statistical packet length correlation.

Zero-Dependency Daemon Deployment

No central account creation, no external coordinator dependencies, and zero CA trusts. Run directly as a native system daemon.

01 Build or Download the Static Binary

Global Ghost Net is self-contained with zero runtime dependencies. Install via Cargo or fetch the pre-compiled static binary:

# Install from source via Rust & Cargo
cargo install --git https://github.com/KELLERBABG/Global-Ghost-Net.git

# Or clone and compile native release target
git clone https://github.com/KELLERBABG/Global-Ghost-Net.git
cd Global-Ghost-Net && cargo build --release

02 Launch Public Swarm Node (Default Mode)

Binds UDP mesh listener and automatically discovers global participants via decentralized DNS seeds and LAN multicast:

# Join worldwide swarm (RS(2,1) multi-hop dispersion)
GHOST_BIND=0.0.0.0:2271 vantablack

Port 2271 handles encrypted GTF datagrams; port 2270 handles local Ed25519-signed multicast beacons.

03 Isolate as a Private Overlay Mesh (Optional)

Generate a 256-bit symmetric pre-shared key. Packets without a valid cryptographic PSK tag are dropped prior to decapsulation:

# Generate 32-byte secret
openssl rand -hex 32

# Run private sovereign node
export GHOST_PSK=e7f9a204b18c5e032fa89b2c...09df
GHOST_BIND=0.0.0.0:2271 vantablack

04 Route Client Traffic (SOCKS5 Proxy or Virtual TUN)

Tunnel application traffic through the encrypted post-quantum mesh directly to designated exit nodes or peer subnets:

# Connect via local SOCKS5 proxy (127.0.0.1:1080)
GHOST_SOCKS5=1 GHOST_SEEDS=node1.domain.com:2271 vantablack

# Test proxy egress
curl --socks5 127.0.0.1:1080 https://checkip.amazonaws.com