1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 13:16:09 +03:00
ProxySU/README.md

92 lines
5.5 KiB
Markdown
Raw Normal View History

2020-04-12 02:58:31 +03:00
# ProxySU
2020-04-23 04:47:38 +03:00
V2ray and Trojan install tools for windows。V2ray和Trojan一键安装工具。
2020-03-24 13:27:35 +03:00
2020-04-23 04:47:38 +03:00
学习C#用来练手的小工具。代码写的很菜大佬勿喷。编译环境Visual Studio 2017 使用WPF界面
2020-03-24 13:27:35 +03:00
2020-04-23 04:47:38 +03:00
Trojan 可一键安装的模式有:
* Trojan + TLS + Web
V2ray可一键安装的模式有
2020-04-15 02:36:35 +03:00
* tcp
* tcp+http伪装
* tcp+TLS
2020-04-15 05:49:02 +03:00
* tcp+TLS (自签证书)
2020-04-19 02:57:56 +03:00
* WebSocket
2020-04-16 09:07:03 +03:00
* WebSocket+TLS
2020-04-15 02:36:35 +03:00
* WebSocket+TLS+Web
2020-04-16 09:03:08 +03:00
* WebSocket+TLS自签证书
* http2
2020-04-16 16:10:45 +03:00
* http2+TLS+Web
2020-04-16 16:45:10 +03:00
* http2自签证书
2020-04-15 02:36:35 +03:00
* mKCP及各种伪装
* QUIC及各种伪装。
2020-03-24 13:27:35 +03:00
2020-04-19 05:49:47 +03:00
mKCP和QUIC模式使用udp协议可以有效减少网络延时有加速的作用但在网络管控严厉时期会导致IP被封我遇到的一次就是刚安装好使用了3个小时后IP被封。以上模式最推荐的是WebSocket+TLS+Web 和http2+TLS+Web 需要有一个域名。如果能加上CDN则稳定性更好。只是可能会影响速度。唉鱼肉熊掌不可兼得也
2020-04-12 02:54:33 +03:00
支持的VPS系统为
2020-04-13 02:29:25 +03:00
* CentOS 7/8
2020-04-13 12:37:51 +03:00
* Debian 8/9/10 (推荐)
2020-04-13 02:29:25 +03:00
* Ubuntu 16.04及以上
2020-03-27 16:29:20 +03:00
2020-04-19 02:48:09 +03:00
(注意如果系统启用了SELinux且工作在Enforcing模式下时需要将Enforcing更改为Permissive模式否则使用WebSocket+TLS+Web时Caddy的service无法开机启动这种情形一般出现在Centos7/8中程序在安装过程中将自动处理。)
2020-04-06 17:06:31 +03:00
2020-04-23 04:47:38 +03:00
V2ray模式目前已支持生成用于
2020-03-27 16:29:20 +03:00
2020-04-13 02:49:50 +03:00
* v2ray官方程序配置文件(客户端配置)
* v2rayN (windows)客户端导入二维码和网址
* Shadowrocket (ios)导入二维码和网址
* v2rayNG (Android)导入二维码和网址
2020-03-27 16:38:33 +03:00
2020-04-19 02:48:51 +03:00
程序中只实现生成v2rayN的但是Shadowrocket和v2rayNG都可以导入。所以就偷了个懒
2020-03-27 16:38:33 +03:00
2020-04-23 04:47:38 +03:00
Trojan模式目前已支持生成用于
* Trojan官方程序配置文件客户端配置
* Shadowrocket (ios)导入二维码和网址
* Trojan-QT5 (windows)导入二维码和网址
2020-04-12 16:26:14 +03:00
## 程序工作流程:
2020-04-13 02:29:25 +03:00
1. 使用[SSH.NET](https://github.com/sshnet/SSH.NET)登录远程主机
2020-04-23 04:47:38 +03:00
2. 选择V2ray则调用V2ray官方安装脚本 `curl -o /tmp/go.sh https://install.direct/go.sh` `bash /tmp/go.sh -f` 安装V2ray。选择Trojan则调用Trojan官方安装脚本 `curl -o /tmp/trojan-quickstart.sh https://raw.githubusercontent.com/trojan-gfw/trojan-quickstart/master/trojan-quickstart.sh` `yes | bash /tmp/trojan-quickstart.sh` 安装Trojan。
2020-04-13 02:29:25 +03:00
3. 根据选择读取相应配置模板,调用[Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json)生成相应配置文件,并上传到服务器。
2020-04-23 04:47:38 +03:00
4. 如果使用WebSocket+TLS+Web/http2+TLS+Web/Trojan + TLS + Web模式则调用Caddy官方安装脚本 `curl https://getcaddy.com -o getcaddy`
2020-04-13 02:26:44 +03:00
`bash getcaddy personal hook.service` 安装Caddy。
2020-04-16 09:07:03 +03:00
5. 如果使用Http2/tcp+TLS/WebSocket+TLS模式则调用 `curl https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh | INSTALLONLINE=1 sh` 安装acme.sh使用acme.sh申请并安装证书到V2ray.
2020-04-13 02:29:25 +03:00
6. 安装成功后,使用[Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json)生成兼容于v2rayN的json文件用C#内置的Base64库将json生成url链接使用[QRcoder](https://github.com/codebude/QRCoder)生成二维码。
2020-04-12 16:26:14 +03:00
2020-04-15 02:21:56 +03:00
*V2ray安装及配置文件主要参考自
2020-04-23 04:51:06 +03:00
[V2ray官网](https://www.v2ray.com)
2020-04-15 02:21:56 +03:00
[白话文教程](https://toutyrater.github.io/)
[新白话文教程(社区版)](https://guide.v2fly.org/)
2020-04-15 02:21:03 +03:00
2020-04-23 04:47:38 +03:00
*Trojan安装及配置文件主要参考自
[Trojan官方配置文档](https://trojan-gfw.github.io/trojan/config)
2020-04-23 04:51:38 +03:00
[Trojan官方安装说明](https://github.com/trojan-gfw/trojan/wiki/Binary-&-Package-Distributions)
2020-04-23 04:47:38 +03:00
[自建梯子教程-Trojan](https://trojan-tutor.github.io/2019/04/10/p41.html)
2020-03-11 06:09:20 +03:00
## License
2020-03-24 13:28:24 +03:00
[(GPL-V3)](https://raw.githubusercontent.com/proxysu/windows/master/LICENSE)
2020-03-11 21:32:28 +03:00
2020-04-13 02:52:33 +03:00
## 运行文件下载(随代码更新可能有bug)
2020-03-11 21:32:28 +03:00
[下载](https://github.com/proxysu/windows/raw/master/ProxySU/bin/Release/Release.zip)
2020-04-12 04:51:34 +03:00
2020-04-12 04:54:57 +03:00
## Windows系统需要安装net4.0及以上
2020-04-12 04:51:34 +03:00
2020-04-12 04:53:20 +03:00
Microsoft [.NET Framework 4.0](https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net40-offline-installer) or higher
2020-04-12 15:57:59 +03:00
## 使用的C# 库
2020-04-12 16:05:52 +03:00
[SSH.NET ------ https://github.com/sshnet/SSH.NET](https://github.com/sshnet/SSH.NET)
[Newtonsoft.Json ------ https://github.com/JamesNK/Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json)
[QRcoder ------ https://github.com/codebude/QRCoder](https://github.com/codebude/QRCoder)
2020-04-12 16:04:50 +03:00
2020-04-19 02:47:37 +03:00
## 程序安全
为了布署方便程序使用root账户登录主机但出于慎重请不要在运行重要程序及用于生产的主机上使用。程序所有源码开源所使用的库都是github开源项目可以保障最大的使用安全程序不夹带任何私货及后门不是在本项目地址下载的不做任何保障请尽可能从本项目地址下载。
2020-04-18 16:42:56 +03:00
## v1.0.0发布小记
2020-04-18 16:48:04 +03:00
足足用了近两个月的业余时间终于做成一个功能还算完善的版本。虽是一个简单的小工具没想到对于我这个初学C#的人还是有点小吃力如果不是因为武汉肺炎疫情被禁足在家还真没时间。学习C#,为啥编写这样一个小工具软件来练手?现在一键安装脚本多的是,这样的工具还有必要吗?咋说呢?我也不知道有多少人会喜欢这个小工具,只是觉得自己用着方便,也想方便一下别人吧,喜欢用就用,不喜欢,也随意。
2020-04-19 06:50:22 +03:00
生意又忙起来了,对于我这个业余的编程爱好者,可能没有多少业余时间继续折腾了,尽力吧。
2020-04-18 16:48:04 +03:00
记于2020.4.18
2020-04-18 16:42:56 +03:00