All Projects → shikanon → Socks5proxy

shikanon / Socks5proxy

Licence: mit
一个简单的socks5代理转发服务(VPN)

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Socks5proxy

Brook
Brook is a cross-platform strong encryption and not detectable proxy. Zero-Configuration. Brook 是一个跨平台的强加密无特征的代理软件. 零配置.
Stars: ✭ 12,694 (+17778.87%)
Mutual labels:  vpn, shadowsocks, socks5
Freess
免费ss账号 免费shadowsocks账号 免费v2ray账号 (长期更新)
Stars: ✭ 6,544 (+9116.9%)
Mutual labels:  vpn, shadowsocks, socks5
V2ray Core
A platform for building proxies to bypass network restrictions.
Stars: ✭ 13,438 (+18826.76%)
Mutual labels:  vpn, shadowsocks, socks5
Streisand
Streisand sets up a new server running your choice of WireGuard, OpenConnect, OpenSSH, OpenVPN, Shadowsocks, sslh, Stunnel, or a Tor bridge. It also generates custom instructions for all of these services. At the end of the run you are given an HTML file with instructions that can be shared with friends, family members, and fellow activists.
Stars: ✭ 22,605 (+31738.03%)
Mutual labels:  vpn, shadowsocks
Avpn
a simple vpn implemented based on c++ asio.
Stars: ✭ 57 (-19.72%)
Mutual labels:  vpn, socks5
Go Shadowsocks2
Experimental Shadowsocks in Go. Stable fork at https://github.com/shadowsocks/go-shadowsocks2
Stars: ✭ 530 (+646.48%)
Mutual labels:  shadowsocks, socks5
Announcement
Stars: ✭ 391 (+450.7%)
Mutual labels:  vpn, shadowsocks
Openmptcprouter
OpenMPTCProuter is an open source solution to aggregate multiple internet connections using Multipath TCP (MPTCP) on OpenWrt
Stars: ✭ 652 (+818.31%)
Mutual labels:  vpn, shadowsocks
Free
翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子
Stars: ✭ 16,689 (+23405.63%)
Mutual labels:  vpn, shadowsocks
Python Proxy
HTTP/HTTP2/HTTP3/Socks4/Socks5/Shadowsocks/ShadowsocksR/SSH/Redirect/Pf TCP/UDP asynchronous tunnel proxy implemented in Python 3 asyncio.
Stars: ✭ 692 (+874.65%)
Mutual labels:  shadowsocks, socks5
Shadowsocks Php
A php port of shadowsocks based on workerman. A socks5 proxy written in PHP.
Stars: ✭ 869 (+1123.94%)
Mutual labels:  shadowsocks, socks5
Dosvpn
🚀 极速、简单、开源的 VPN 访问外网学习先进科学技术的必备工具
Stars: ✭ 485 (+583.1%)
Mutual labels:  vpn, shadowsocks
Ladder Ios
A solution for the IWE (Immersive Wallless Experience) on iOS platform.
Stars: ✭ 468 (+559.15%)
Mutual labels:  vpn, shadowsocks
Leaf
A lightweight and fast proxy utility tries to include any useful features.
Stars: ✭ 530 (+646.48%)
Mutual labels:  vpn, shadowsocks
Freepac
科学上网/翻墙梯子/自由上网/SS/SSR/V2Ray/Brook 搭建教程 免费机场、VPN工具
Stars: ✭ 4,515 (+6259.15%)
Mutual labels:  vpn, shadowsocks
Blinksocks
A framework for building composable proxy protocol stack.
Stars: ✭ 587 (+726.76%)
Mutual labels:  shadowsocks, socks5
Cloak
A censorship circumvention tool to evade detection against state adversaries
Stars: ✭ 942 (+1226.76%)
Mutual labels:  vpn, shadowsocks
New Pac
翻墙-科学上网、免费翻墙、免费科学上网、免费自由上网、fanqiang、翻墙梯子、免费软件/方法,一键翻墙浏览器,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点分享,vps一键搭建翻墙服务器脚本/教程,电脑、手机、iOS、安卓、windows、Mac、Linux、路由器翻墙
Stars: ✭ 31,869 (+44785.92%)
Mutual labels:  vpn, shadowsocks
Free Ssr V2ray Vpn
ssr/酸酸乳/v2ray/shadowsocks节点/vpn/机场搬运分享
Stars: ✭ 330 (+364.79%)
Mutual labels:  vpn, shadowsocks
Xray Core
Xray, Penetrates Everything. Also the best v2ray-core, with XTLS support. Fully compatible configuration.
Stars: ✭ 6,908 (+9629.58%)
Mutual labels:  socks5, shadowsocks

Socks5Proxy

GitHub license GitHub stars GitHub forks Language Go Report Card

用golang 实现了一个简单的socks5协议来实现代理转发,主要应用场景是給公司内部做VPN登陆,提供内网访问。(声明:由于采用的是原始的socks5协议,并没有对协议做改造加工,并不一定能防范GFW的主动探测,请勿用于非法用途)

文件结构

cryptogram.go       `加密算法`
socks5.go           `socks5协议实现`
server.go           `服务端实现`
client.go           `客户端实现`
cmd/server/main.go  `服务端主启动程序`
cmd/client/main.go  `客户端主启动程`

使用说明

服务端 在服务器端中启动路径,打开。/cmd/server/,运行go run main.go 服务端命令参数有三个:

  -local string #设置服务器对外端口
    	Input server listen address(Default 8888): (default ":18888")
  -passwd string #设置服务器对外密码
    	Input server proxy password: (default "123456")
  -type string #设置加密类型
    	Input encryption type: (default "random")

客户端 在客户端中启动路径,打开。/cmd/client/,运行go run main.go 服务端命令参数有四个:

  -local string #设置客户端的本地转发端口
        Input server listen address(Default 8888): (default ":8888")
  -passwd string #设置服务器的密码
        Input server proxy password: (default "123456")
  -server string #设置服务器ip地址和端口
        Input server listen address, for example: 16.158.6.16:18181
  -type string #设置加密类型
    	Input encryption type: (default "random")

TODO

  • [ * ] 混淆加密
  • [ * ] 客户端
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].