A proxy based on native ws protocal. But can response a http2 website that you configured without authorization to hide your proxy.
- Proxy based on websocket
- TLS support
- Secret link
- Camouflage traffic
- CDN
- ClientHello fingerprinting resistance
$ git clone https://github.com/nisainan/wstunnel.git
$ cd wstunnel
$ go buildEdit client/config.yaml and server/config.yaml with your own data
client/config.yaml
local-addr: "127.0.0.1:9999" # http listen address in your local machine
server-addr: "domain:443" # remote server address
sni: "ws.sekiro.vip" # remote server sni
secret-link: "/secretLink" # websocket secret linkserver/config.yaml
cert: "xxxx" # cert file localtion
key: "xxxx" # key file localtion
addr: "0.0.0.0:443" # listen address
secret-link: "/secretLink" # websocket secret link,same as client's
upstream: "http://127.0.0.1:80" # cheat-host, make sure this server worksclient
./wstunnel --type client --config client.yamlserver
./wstunnel --type server --config server.yaml- Use SwitchyOmega in your browser
- Add a http proxy whith your client address
- Congratulations,Go browse all the things!
This proxy is based on websocket, so you can hide your server behind cdn which suport websocket protocol like Cloudflare.Also, when someone try to access your server in https protocol ,server will response a http2 website that you configured
WsTunnel source code is available under the MIT License.
