Skip to content

🔭 Warping your own Internet everywhere you go 📡

Notifications You must be signed in to change notification settings

tholian-network/warps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tholian® Warps

Tholian® Warps is a proactive and adaptive Mesh Network Router.

It tries to automatically detect and bypass censorship and throttling measurements at all cost. Programmable routing, traffic compression, traffic scattering, dynamic encryption rotation and other features are part of this experimental research project.

The goal of this project is to find out how feasible common NAT breaking and firewall bypassing techniques are and whether they can be used to build a reliable mesh network that's based on a peer-to-peer architecture.

Network Architecture

  1. A tunnel instance tunnels network traffic through a forward or gateway instance to access the internet.
  2. A tunnel uses the initial configured network protocol.
  3. A forward instance tunnels network traffic through other forward or gateway instances.
  4. All gateway instances use optimizers to reduce web asset file sizes.
  5. All gateway instances use DNS over TLS to resolve relayed DNS queries.
  6. All instances use a local ProxyCache and ResolverCache.
  7. All instances can rotate encryption keys and can scatter network traffic on-demand.

How to use Tunnels and Gateways

The easiest way to use Warps is with running a Warps gateway on your own VPS that is connected to the internet, and a locally running Warps tunnel.

As a defaulted network protocol, it is best to use dns, as that usually works to bypass typical firewall setups. Alternative supported network protocols are documented further down in this document.

network-architecture.png

# On your VPS server (1.3.3.7)
tholian-warps gateway "dns://0.0.0.0:1053";

# On your local machine
tholian-warps tunnel "any" "dns://1.3.3.7:1053";
curl -x localhost:1080 http://google.com;

How to use Proxy Chains

Warps can be chained via multiple proxies, without a limit on how many network hops you want to the public internet. In this example, we are routing local web traffic through 3 instances before the traffic hits the clearnet.

# On your first VPS server (1.3.3.7)
tholian-warps gateway "dns://0.0.0.0:1337";

# On your second VPS server (1.3.3.8)
tholian-warps forward "http://1.3.3.8:1338" "dns://1.3.3.7:1337";

# On your third VPS server (1.3.3.9)
tholian-warps forward "dns://1.3.3.9:1339" "http://1.3.3.8:1338";

# On your local machine
# local -> dns -> 1.3.3.9 -> http -> 1.3.3.8 -> dns -> 1.3.3.7 -> * -> internet
tholian-warps tunnel "any" "dns://1.3.3.9:1339";
curl -x localhost:1080 http://google.com;

Usage

🚧 Highly Experimental at this point - Use at own risk! 🚧

bash build.sh;
sudo cp ./build/tholian-warps /usr/bin/tholian-warps;

# Show CLI usage help
tholian-warps;

Data Compressors

These are the data compressors that have been implemented:

Network Protocols

These are the transport protocols that have been implemented:

Test Coverage

These are the go test files that have been implemented:

License

AGPL3