https://github.com/zizon/qsocks
toolkits of SOCKS5 compatible QUIC proxy
https://github.com/zizon/qsocks
proxy proxy-server quic socks5
Last synced: 5 months ago
JSON representation
toolkits of SOCKS5 compatible QUIC proxy
- Host: GitHub
- URL: https://github.com/zizon/qsocks
- Owner: zizon
- License: mit
- Created: 2020-08-12T13:04:10.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-09T07:33:40.000Z (over 3 years ago)
- Last Synced: 2024-06-19T11:17:03.176Z (almost 2 years ago)
- Topics: proxy, proxy-server, quic, socks5
- Language: Go
- Homepage:
- Size: 131 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qsocks
Encapsulate SOCKS5 inside QUIC
# Workflow
client -> lcoal quic forward -> remote quic socks5 -> target
dataflows are since bidirectional
# Examples:
```shell
# start proxy server at remote server
podman run --network host \
ghcr.io/zizon/qsocks:master \
/usr/local/bin/qsocks \
sqserver --listen 0.0.0.0:1080
# start a local client
# RemoteServerIP = the public accessible ip of server
# RemoteServerPort = the port server listening on, 1080 for previous server example
podman run --rm --name qsocks \
--network host \
ghcr.io/zizon/qsocks:master \
/usr/local/bin/qsocks \
qsocks \
--verbose 1 \
--timeout 10s \
--listen 127.0.0.1:1080 \
--streams 5 \
--connect sqserver://${RemoteServerIP}:${RemoteServerPort}
```
# Issue
Currently, the socks5 part only implement a limited set of spec,mostly the `CONNECT` command.
`UDP assoicate` and `BIND` are not supported