Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lzjluzijie/websocks

A secure proxy based on WebSocket. 一个基于 WebSocket 的代理工具
https://github.com/lzjluzijie/websocks

proxy socks5 tls websocket

Last synced: 3 months ago
JSON representation

A secure proxy based on WebSocket. 一个基于 WebSocket 的代理工具

Awesome Lists containing this project

README

        

# WebSocks

A secure proxy based on websocket.

**Websocks will be temporarily suspended for a few more months because I have to apply for university. I'm really sorry and I promise I will come back.**

This project is still working in progress, more features are still in development. If you are interested in this project, please star this project in order to support me. Thank you.

If you have any problems or suggestions, please do not hesitate to submit issues or contact me [@halulu](https://t.me/halulu).

Advantages:

- Using WebSocket and TLS which are very secure and difficult to be detected, same as regular HTTPS websites
- Can be used with cdn such as cloudflare, not afraid of gfw at all!

The disadvantage is that I have just started development, there is no GUI client, and features are not enough. I will appreciate if you can help me!

[Official site](https://websocks.org/)|[Community](https://zhuji.lu/tags/websocks)|[Test node](https://zhuji.lu/topic/39/websocks测试节点)|[One-click script](https://zhuji.lu/topic/15/websocks-一键脚本-简易安装教程)|[Telegram group](https://t.me/websocks)

## Example

### Built-in TLS with fake server name and reversing proxy

#### Server
```
./websocks cert
./websocks server -l :443 -p websocks --reverse-proxy http://mirror.centos.org --tls
```

#### Client
```
./websocks client -l :1080 -s wss://websocks.org:443/websocks -sni mirror.centos.com --insecure
```

### Caddy TLS

#### Server
```
./websocks server -l :2333 -p /websocks
```

#### Client
```
./websocks client -l :1080 -s wss://websocks.org/websocks
```

#### Caddyfile
```
https://websocks.org {
proxy /websocks localhost:2333 {
websocket
}
}
```