Go to file
2025-02-20 14:58:37 -05:00
.gitignore Update .gitignore 2024-08-14 21:36:00 +03:30
.goreleaser.yml Update git repository in .goreleaser.yml 2025-02-20 14:39:13 -05:00
dnsmasq.conf Add sample dnsmasq.conf 2025-02-20 14:58:19 -05:00
go.mod Add whitelist 2024-08-06 22:58:45 +03:30
go.sum Add whitelist 2024-08-06 22:58:45 +03:30
iptables_init.sh Remove "Flush exiting rules" and "Set default policies" from 2025-02-20 14:57:22 -05:00
LICENSE Update year in LICENSE file 2025-02-20 14:39:51 -05:00
main.go Add whitelist 2024-08-06 22:58:45 +03:30
Makefile Initial commit 2024-03-03 06:31:46 +03:30
README.md Update README 2025-02-20 14:58:37 -05:00
VERSION Add whitelist 2024-08-06 22:58:45 +03:30

TCProxy

TCProxy is a lightweight and efficient TCP proxy that forwards HTTPS and HTTP traffic transparently based on SNI and host headers. Originally developed to bypass internet censorship, it enables seamless access to blocked websites when combined with a custom DNS resolver.

Features:

  • Transparent HTTPS/HTTP Forwarding: Routes traffic based on SNI (for HTTPS) and Host headers (for HTTP) without requiring client-side configuration.
  • Censorship Bypass: Designed to work with a DNS server that redirects blocked domains to a proxy server.
  • IP Whitelisting: Restricts access to authorized users, with dynamic whitelist updates.
  • Minimal Overhead: Lightweight Go implementation with efficient concurrency handling.
  • Customizable Binding: Allows specifying the listening address and port.

How It Works:

  1. A custom DNS resolver is deployed inside a censored region to redirect domains to an external VPS.
  2. The VPS runs TCProxy, which inspects and forwards traffic to the requested destination.
  3. iptables is used to transparently redirect all traffic on ports 80 and 443 to tcproxy.

Usage:

tcproxy -b "0.0.0.0:8443"

This starts TCProxy, listening on all interfaces at port 8443.

Command-line Options:

  • -b, --bind: Set the address to bind (default: localhost:8443).
  • -v, --version: Display the version.
  • -h, --help: Show usage instructions.

Requirements:

  • Go 1.16+
  • A whitelist.txt file for IP-based filtering.

Installation:

Build from source:

git clone https://git.behzadan.com/reza/tcproxy.git
cd tcproxy
make
sudo make install

Acknowledgements