From 5eeb2bfd483a6d5d8928507fcb1ab6d96d49d771 Mon Sep 17 00:00:00 2001 From: ProxySU Date: Sun, 4 Oct 2020 22:44:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0VLESS=20VMESS=20XTLS=20TLS=20?= =?UTF-8?q?WS=20=E5=A4=8D=E5=90=88=E6=96=B9=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProxySU/MainWindow.xaml | 24 +- ProxySU/MainWindow.xaml.cs | 574 +++-- ProxySU/Properties/AssemblyInfo.cs | 4 +- ProxySU/ResultClientInformation.xaml | 131 +- ProxySU/ResultClientInformation.xaml.cs | 1967 ++++++++++++++--- ProxySU/Translations/ProxySU.en-US.xaml | 13 +- ProxySU/Translations/ProxySU.zh-CN.xaml | 16 +- ProxySU/Translations/ProxySU.zh-TW.xaml | 9 +- ProxySU/V2RayTemplateWindow.xaml | 74 +- ProxySU/V2RayTemplateWindow.xaml.cs | 201 +- ProxySU/bin/Beta/Beta.zip | Bin 572996 -> 579626 bytes .../06_outbounds/Http2Web_client_config.json | 4 +- .../Http2selfSigned_client_config.json | 2 +- .../WebSocketTLSWeb_client_config.json | 6 +- ...WebSocketTLS_selfSigned_client_config.json | 2 +- .../WebSocket_TLS_client_config.json | 4 +- .../06_outbounds/http2_client_config.json | 2 +- .../06_outbounds/mkcp_client_config.json | 2 +- .../06_outbounds/quic_client_config.json | 3 +- .../tcpTLSselfSigned_client_config.json | 2 +- .../06_outbounds/tcp_TLS_client_config.json | 4 +- .../06_outbounds/tcp_client_config.json | 2 +- .../06_outbounds/tcp_http_client_config.json | 3 +- .../vless_http2_tls_server_config.json | 3 +- .../vless_tcp_tls_caddy_cilent_config.json | 3 +- .../vless_tcp_xtls_client_config.json | 5 +- .../vless_ws_tls_client_config.json | 8 +- .../vmess_tcp_tls_client_config.json | 36 + .../06_outbounds/webSocket_client_config.json | 2 +- .../05_inbounds/http2_server_config.json | 2 +- .../vless_tcp_xtls_server_config.json | 2 +- ...mess_xtls_tcp_websocket_server_config.json | 120 + 32 files changed, 2536 insertions(+), 694 deletions(-) create mode 100644 TemplateConfg/v2ray/client/06_outbounds/vmess_tcp_tls_client_config.json create mode 100644 TemplateConfg/v2ray/server/05_inbounds/vless_vmess_xtls_tcp_websocket_server_config.json diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 3e4c96e..9f97096 100644 --- a/ProxySU/MainWindow.xaml +++ b/ProxySU/MainWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="ProxySU - v2.3.0" Height="675" Width="620"> + Title="ProxySU - v2.3.1" Height="675" Width="620"> @@ -223,8 +223,26 @@ - - + + + + + + + + + + + + + + + + + + + + diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index c7a1cbb..a127e03 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -45,13 +45,13 @@ namespace ProxySU //ReceiveConfigurationParameters[0]----模板类型 //ReceiveConfigurationParameters[1]----服务端口 //ReceiveConfigurationParameters[2]----V2Ray uuid/(naive/Trojan-go/Trojan/SSR/SS)' Password - //ReceiveConfigurationParameters[3]----QUIC加密方式/SSR 加密方法/naive'user + //ReceiveConfigurationParameters[3]----QUIC加密方式/SSR 加密方法/naive'user/VLESS ws Path //ReceiveConfigurationParameters[4]----Domain //ReceiveConfigurationParameters[5]----伪装类型/插件名称 - //ReceiveConfigurationParameters[6]----Websocket'Path/http2'Path/QUIC密钥/mKCP Seed/SS 加密方式 + //ReceiveConfigurationParameters[6]----Websocket'Path/http2'Path/QUIC密钥/mKCP Seed/SS 加密方式/VMESS ws Path //ReceiveConfigurationParameters[7]----伪装网站 //ReceiveConfigurationParameters[8]----方案名称 - //ReceiveConfigurationParameters[9]----插件参数选项 + //ReceiveConfigurationParameters[9]----插件参数选项/VMESS tcp Path //public static ConnectionInfo ConnectionInfo; public static string proxyType = "V2Ray"; //代理类型标识: V2Ray\TrojanGo\Trojan\NaiveProxy static bool testDomain = false; //设置标识--域名是否需要检测解析,初始化为不需要 @@ -723,6 +723,7 @@ namespace ProxySU { //隐藏Path/mKCP Seed/Quic Key HideV2RayPathSeedKey(); + HideVlessVmessXtlsTcpWs(); //隐藏域名/Quic加密方式 HideV2RayDomainQuicEncrypt(); @@ -735,28 +736,36 @@ namespace ProxySU { //隐藏Path/mKCP Seed/Quic Key HideV2RayPathSeedKey(); + HideVlessVmessXtlsTcpWs(); //显示域名 ShowV2RayDomainQuicEncrypt(); - TextBlockV2RayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); - TextBlockCurrentlySelectedPlanDomain.Text = ReceiveConfigurationParameters[4]; //域名 - //隐藏伪装网站 HideV2RayMaskSites(); } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //显示复合方案路径 + ShowVlessVmessXtlsTcpWs(); + + //显示域名 + ShowV2RayDomainQuicEncrypt(); + + //显示伪装网站(暂时不显示) + ShowV2RayMaskSites(); + + } else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) { //隐藏Path/mKCP Seed/Quic Key HideV2RayPathSeedKey(); + HideVlessVmessXtlsTcpWs(); //显示域名 ShowV2RayDomainQuicEncrypt(); - TextBlockV2RayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); - TextBlockCurrentlySelectedPlanDomain.Text = ReceiveConfigurationParameters[4]; //域名 - - + //显示伪装网站(暂时不显示) ShowV2RayMaskSites(); } @@ -771,9 +780,7 @@ namespace ProxySU //显示域名 ShowV2RayDomainQuicEncrypt(); - TextBlockV2RayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); - TextBlockCurrentlySelectedPlanDomain.Text = ReceiveConfigurationParameters[4]; //域名 - + //显示伪装网站(暂时不显示) HideV2RayMaskSites(); } @@ -789,9 +796,7 @@ namespace ProxySU //显示域名 ShowV2RayDomainQuicEncrypt(); - TextBlockV2RayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); - TextBlockCurrentlySelectedPlanDomain.Text = ReceiveConfigurationParameters[4]; //域名 - + //显示伪装网站(暂时不显示) ShowV2RayMaskSites(); } @@ -858,6 +863,7 @@ namespace ProxySU //显示Path/mKCP Seed/Quic Key private void ShowV2RayPathSeedKey() { + HideVlessVmessXtlsTcpWs(); TextBlockV2RayShowPathSeedKey.Visibility = Visibility.Visible; TextBlockCurrentlySelectedPlanPathSeedKey.Visibility = Visibility.Visible; } @@ -869,11 +875,30 @@ namespace ProxySU TextBlockCurrentlySelectedPlanPathSeedKey.Visibility = Visibility.Hidden; } + //显示VLESS VMESS XTLS TCP WS 复合方案 + private void ShowVlessVmessXtlsTcpWs() + { + HideV2RayPathSeedKey(); + GridVlessVmessXtlsTcpWs.Visibility = Visibility.Visible; + TextBlockBoxPathVlessWS.Text = ReceiveConfigurationParameters[3]; + TextBlockBoxPathVmessTcp.Text = ReceiveConfigurationParameters[9]; + TextBlockBoxPathVmessWS.Text = ReceiveConfigurationParameters[6]; + } + + //隐藏VLESS VMESS XTLS TCP WS 复合方案 + private void HideVlessVmessXtlsTcpWs() + { + GridVlessVmessXtlsTcpWs.Visibility = Visibility.Collapsed; + } + //显示域名/Quic加密方式 private void ShowV2RayDomainQuicEncrypt() { TextBlockV2RayShowCurrentlySelectedPlanDomain.Visibility = Visibility.Visible; TextBlockCurrentlySelectedPlanDomain.Visibility = Visibility.Visible; + TextBlockV2RayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); + TextBlockCurrentlySelectedPlanDomain.Text = ReceiveConfigurationParameters[4]; //域名 + } //隐藏域名/Quic加密方式 @@ -923,23 +948,27 @@ namespace ProxySU MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ChooseTemplate").ToString()); return; } - else if (String.Equals(ReceiveConfigurationParameters[0], "TCP") - || String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") - || String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") - || String.Equals(ReceiveConfigurationParameters[0], "webSocket") - || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") - || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") - || ReceiveConfigurationParameters[0].Contains("mKCP") - || ReceiveConfigurationParameters[0].Contains("Quic")) + else if (String.Equals(ReceiveConfigurationParameters[0], "TCP") == true + || String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") == true + || String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "webSocket") == true + || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true + || ReceiveConfigurationParameters[0].Contains("mKCP") == true + || ReceiveConfigurationParameters[0].Contains("Quic") == true) { testDomain = false; } - else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") - || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") - || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") - || String.Equals(ReceiveConfigurationParameters[0], "Http2") - || String.Equals(ReceiveConfigurationParameters[0], "http2Web")) + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "Http2") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) { testDomain = true; @@ -1669,9 +1698,9 @@ namespace ProxySU //Thread.Sleep(1000); - //生成服务端配置 + #region 生成服务端配置 - //依据所选择的模式选择配置文件 + //读取配置文件各个模块 string logConfigJson = @"TemplateConfg\v2ray\server\00_log\00_log.json"; string apiConfigJson = @"TemplateConfg\v2ray\server\01_api\01_api.json"; string dnsConfigJson = @"TemplateConfg\v2ray\server\02_dns\02_dns.json"; @@ -1685,6 +1714,7 @@ namespace ProxySU string baseConfigJson = @"TemplateConfg\v2ray\base.json"; string serverRemoteConfig = @"/usr/local/etc/v2ray/config.json"; + //配置文件模块合成 using (StreamReader reader = File.OpenText(baseConfigJson)) { JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader)); @@ -1750,74 +1780,78 @@ namespace ProxySU } //依据安装模式读取相应模板 - if (String.Equals(ReceiveConfigurationParameters[0], "TCP")) + if (String.Equals(ReceiveConfigurationParameters[0], "TCP") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\tcp_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp")) + else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\tcp_http_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS")) + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\tcp_TLS_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned")) + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\tcpTLSselfSigned_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp")) + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\vless_tcp_xtls_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb")) + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\vless_tcp_tls_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb")) + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\vless_ws_tls_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web")) + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\vless_http2_tls_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket")) + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\vless_vmess_xtls_tcp_websocket_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\webSocket_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS")) + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\WebSocket_TLS_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned")) + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\WebSocketTLS_selfSigned_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web")) + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\WebSocketTLSWeb_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "Http2")) + else if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\http2_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web")) + else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\Http2Web_server_config.json"; } - else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned")) + else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\Http2selfSigned_server_config.json"; } //else if (String.Equals(ReceiveConfigurationParameters[0], "MkcpNone")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2SRTP")||String.Equals(ReceiveConfigurationParameters[0], "mKCPuTP")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WechatVideo")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2DTLS")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WireGuard")) - else if (ReceiveConfigurationParameters[0].Contains("mKCP")) + else if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\mkcp_server_config.json"; } // else if (String.Equals(ReceiveConfigurationParameters[0], "QuicNone") || String.Equals(ReceiveConfigurationParameters[0], "QuicSRTP") || String.Equals(ReceiveConfigurationParameters[0], "Quic2uTP") || String.Equals(ReceiveConfigurationParameters[0], "QuicWechatVideo") || String.Equals(ReceiveConfigurationParameters[0], "QuicDTLS") || String.Equals(ReceiveConfigurationParameters[0], "QuicWireGuard")) - else if (ReceiveConfigurationParameters[0].Contains("Quic")) + else if (ReceiveConfigurationParameters[0].Contains("Quic") == true) { inboundsConfigJson = @"TemplateConfg\v2ray\server\05_inbounds\quic_server_config.json"; } @@ -1851,7 +1885,8 @@ namespace ProxySU //设置VLESS协议的回落端口,指向Caddy if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) { //设置Caddy随机监听的端口 randomCaddyListenPort = GetRandomPort(); @@ -1860,6 +1895,28 @@ namespace ProxySU jObjectJson["inbounds"][0]["settings"]["fallbacks"][0]["dest"] = randomCaddyListenPort; } + // + if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //设置其他模式的UUID + jObjectJson["inbounds"][1]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["inbounds"][2]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["inbounds"][3]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + + //设置Vless回落与分流的Path + jObjectJson["inbounds"][0]["settings"]["fallbacks"][1]["path"] = ReceiveConfigurationParameters[3]; + jObjectJson["inbounds"][0]["settings"]["fallbacks"][2]["path"] = ReceiveConfigurationParameters[9]; + jObjectJson["inbounds"][0]["settings"]["fallbacks"][3]["path"] = ReceiveConfigurationParameters[6]; + + //设置Vless ws Path + jObjectJson["inbounds"][1]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3]; + //设置Vmess tcp Path + jObjectJson["inbounds"][2]["streamSettings"]["tcpSettings"]["header"]["request"]["path"][0] = ReceiveConfigurationParameters[9]; + //设置Vmess ws Path + jObjectJson["inbounds"][3]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[6]; + + } + //TLS自签证书/WebSocketTLS(自签证书)/http2自签证书模式下,使用v2ctl 生成自签证书 if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true || String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true @@ -1931,12 +1988,17 @@ namespace ProxySU File.Delete(@"config.json"); + #endregion + + #region acme.sh安装 + //如果使用http2/WebSocketTLS/tcpTLS/VlessTcpTlsWeb/VLESS+TCP+XTLS+Web模式,先要安装acme.sh,申请证书 if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true || String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) { //****** "正在安装acme.sh......" ******22 SetUpProgressBarProcessing(55); @@ -2091,13 +2153,18 @@ namespace ProxySU } + #endregion + + #region Caddy安装 + //如果是VLESS+TCP+XTLS+Web/VLESS+TCP+TLS+Web/VLESS+WebSocket+TLS+Web/VLESS+http2+TLS+Web/WebSocket+TLS+Web/http2Web模式,需要安装Caddy if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true || String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true || String.Equals(ReceiveConfigurationParameters[0],"WebSocketTLS2Web") ==true - || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) + || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) { //****** "安装Caddy......" ******28 SetUpProgressBarProcessing(70); @@ -2277,7 +2344,8 @@ namespace ProxySU TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果 if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) { serverConfig = @"TemplateConfg\v2ray\caddy\vlessTcpTlsWeb.caddyfile"; } @@ -2420,6 +2488,9 @@ namespace ProxySU } } + + #endregion + //****** "正在启动V2ray......" ******35 SetUpProgressBarProcessing(90); currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoft").ToString() + "V2ray......"; @@ -2597,6 +2668,8 @@ namespace ProxySU } client.Disconnect();//断开服务器ssh连接 + #region 生成客户端配置 + //****** "生成客户端配置......" ******39 SetUpProgressBarProcessing(99); currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateClientConfig").ToString(); @@ -2685,150 +2758,277 @@ namespace ProxySU clientJson["reverse"] = jObjectJson["reverse"]; } - //根据选择的不同模式,选择相应的配置文件 - if (String.Equals(ReceiveConfigurationParameters[0], "TCP")) + //根据不同的安装方案,选择相应的客户端模板 + if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == false) { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_http_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_TLS_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcpTLSselfSigned_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_xtls_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_tls_caddy_cilent_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_ws_tls_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_http2_tls_server_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\webSocket_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocket_TLS_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocketTLS_selfSigned_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocketTLSWeb_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "Http2")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\http2_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\Http2Web_client_config.json"; - } - else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\Http2selfSigned_client_config.json"; - } - //else if (String.Equals(ReceiveConfigurationParameters[0], "MkcpNone")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2SRTP")||String.Equals(ReceiveConfigurationParameters[0], "mKCPuTP")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WechatVideo")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2DTLS")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WireGuard")) - else if (ReceiveConfigurationParameters[0].Contains("mKCP")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\mkcp_client_config.json"; - } - // else if (String.Equals(ReceiveConfigurationParameters[0], "QuicNone") || String.Equals(ReceiveConfigurationParameters[0], "QuicSRTP") || String.Equals(ReceiveConfigurationParameters[0], "Quic2uTP") || String.Equals(ReceiveConfigurationParameters[0], "QuicWechatVideo") || String.Equals(ReceiveConfigurationParameters[0], "QuicDTLS") || String.Equals(ReceiveConfigurationParameters[0], "QuicWireGuard")) - else if (ReceiveConfigurationParameters[0].Contains("Quic")) - { - outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\quic_client_config.json"; - } - - //读取"相应模板的outbounds" - using (StreamReader readerJson = File.OpenText(outboundsConfigJson)) - { - JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); - - //设置客户端的地址/端口/id - jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; - jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); - jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; - - //设置WebSocket模式下的path - if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true - || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true - || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + #region 单模式方案 + //根据选择的不同模式,选择相应的配置文件 + if (String.Equals(ReceiveConfigurationParameters[0], "TCP") == true) { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_http_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcp_TLS_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\tcpTLSselfSigned_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_xtls_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_tls_caddy_cilent_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_ws_tls_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\vless_http2_tls_server_config.json"; + } + + else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\webSocket_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocket_TLS_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocketTLS_selfSigned_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\WebSocketTLSWeb_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\http2_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\Http2Web_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\Http2selfSigned_client_config.json"; + } + //else if (String.Equals(ReceiveConfigurationParameters[0], "MkcpNone")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2SRTP")||String.Equals(ReceiveConfigurationParameters[0], "mKCPuTP")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WechatVideo")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2DTLS")|| String.Equals(ReceiveConfigurationParameters[0], "mKCP2WireGuard")) + else if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\mkcp_client_config.json"; + } + // else if (String.Equals(ReceiveConfigurationParameters[0], "QuicNone") || String.Equals(ReceiveConfigurationParameters[0], "QuicSRTP") || String.Equals(ReceiveConfigurationParameters[0], "Quic2uTP") || String.Equals(ReceiveConfigurationParameters[0], "QuicWechatVideo") || String.Equals(ReceiveConfigurationParameters[0], "QuicDTLS") || String.Equals(ReceiveConfigurationParameters[0], "QuicWireGuard")) + else if (ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + outboundsConfigJson = @"TemplateConfg\v2ray\client\06_outbounds\quic_client_config.json"; + } + + //读取"相应模板的outbounds" + using (StreamReader readerJson = File.OpenText(outboundsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; + + //设置WebSocket模式下的path + if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true + || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + { + jObjectJson["outbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[6]; + } + + //设置http2模式下的path + if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + jObjectJson["outbounds"][0]["streamSettings"]["httpSettings"]["path"] = ReceiveConfigurationParameters[6]; + } + + //设置http2+TLS+Web/VLESS+http2+TLS+Web模式下的host + if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + jObjectJson["outbounds"][0]["streamSettings"]["httpSettings"]["host"][0] = ReceiveConfigurationParameters[4]; + } + + //设置VLESS+TCP+XTLS+Web模式下的serverName + //if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + //{ + // jObjectJson["outbounds"][0]["streamSettings"]["xtlsSettings"]["serverName"] = ReceiveConfigurationParameters[4]; + //} + + //设置mkcp + if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + jObjectJson["outbounds"][0]["streamSettings"]["kcpSettings"]["header"]["type"] = ReceiveConfigurationParameters[5]; + if (String.IsNullOrEmpty(ReceiveConfigurationParameters[6]) == false) + { + jObjectJson["outbounds"][0]["streamSettings"]["kcpSettings"]["seed"] = ReceiveConfigurationParameters[6]; + } + } + + //设置QUIC + if (ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + jObjectJson["outbounds"][0]["streamSettings"]["quicSettings"]["header"]["type"] = ReceiveConfigurationParameters[5]; + jObjectJson["inbounds"][0]["streamSettings"]["quicSettings"]["security"] = ReceiveConfigurationParameters[3]; + if (String.Equals(ReceiveConfigurationParameters[3], "none") == true) + { + ReceiveConfigurationParameters[6] = ""; + } + jObjectJson["outbounds"][0]["streamSettings"]["quicSettings"]["key"] = ReceiveConfigurationParameters[6]; + } + + clientJson["outbounds"] = jObjectJson["outbounds"]; + + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + #endregion + + } + else + { + //复合方案所需要的配置文件 + //VLESS over TCP with XTLS模式 + string outboundsConfigJsonVlessXtls = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_xtls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsonVlessXtls)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"v2ray_config\vless_tcp_xtls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"v2ray_config\vless_tcp_xtls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\vless_tcp_xtls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VLESS over TCP with TLS模式 + string outboundsConfigJsonVlessTcpTls = @"TemplateConfg\v2ray\client\06_outbounds\vless_tcp_tls_caddy_cilent_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsonVlessTcpTls)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"v2ray_config\vless_tcp_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"v2ray_config\vless_tcp_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\vless_tcp_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VLESS over WS with TLS 模式 + string outboundsConfigJsonVlessWsTls = @"TemplateConfg\v2ray\client\06_outbounds\vless_ws_tls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsonVlessWsTls)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["outbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"v2ray_config\vless_ws_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"v2ray_config\vless_ws_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\vless_ws_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VMess over TCP with TLS模式 + string outboundsConfigJsonVmessTcpTls = @"TemplateConfg\v2ray\client\06_outbounds\vmess_tcp_tls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsonVmessTcpTls)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["outbounds"][0]["streamSettings"]["tcpSettings"]["header"]["request"]["path"][0] = ReceiveConfigurationParameters[9]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"v2ray_config\vmess_tcp_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"v2ray_config\vmess_tcp_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\vmess_tcp_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VMess over WS with TLS模式 + string outboundsConfigJsonVmessWsTls = @"TemplateConfg\v2ray\client\06_outbounds\WebSocketTLSWeb_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsonVmessWsTls)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2]; jObjectJson["outbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[6]; - } - //设置http2模式下的path - if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true - || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true - || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) - { - jObjectJson["outbounds"][0]["streamSettings"]["httpSettings"]["path"] = ReceiveConfigurationParameters[6]; - } - - //设置http2+TLS+Web/VLESS+http2+TLS+Web模式下的host - if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true - || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) - { - jObjectJson["outbounds"][0]["streamSettings"]["httpSettings"]["host"][0] = ReceiveConfigurationParameters[4]; - } - - //设置VLESS+TCP+XTLS+Web模式下的serverName - if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) - { - jObjectJson["outbounds"][0]["streamSettings"]["xtlsSettings"]["serverName"] = ReceiveConfigurationParameters[4]; - } - - //设置mkcp - if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) - { - jObjectJson["outbounds"][0]["streamSettings"]["kcpSettings"]["header"]["type"] = ReceiveConfigurationParameters[5]; - if (String.IsNullOrEmpty(ReceiveConfigurationParameters[6]) == false) + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"v2ray_config\vmess_ws_tls_client_config"))//如果不存在就创建file文件夹      { - jObjectJson["outbounds"][0]["streamSettings"]["kcpSettings"]["seed"] = ReceiveConfigurationParameters[6]; + Directory.CreateDirectory(@"v2ray_config\vmess_ws_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"v2ray_config\vmess_ws_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); } } - //设置QUIC - if (ReceiveConfigurationParameters[0].Contains("Quic") == true) - { - jObjectJson["outbounds"][0]["streamSettings"]["quicSettings"]["header"]["type"] = ReceiveConfigurationParameters[5]; - jObjectJson["inbounds"][0]["streamSettings"]["quicSettings"]["security"] = ReceiveConfigurationParameters[3]; - if (String.Equals(ReceiveConfigurationParameters[3], "none") == true) - { - ReceiveConfigurationParameters[6] = ""; - } - jObjectJson["outbounds"][0]["streamSettings"]["quicSettings"]["key"] = ReceiveConfigurationParameters[6]; - } - - clientJson["outbounds"] = jObjectJson["outbounds"]; - } - using (StreamWriter sw = new StreamWriter(@"v2ray_config\config.json")) - { - sw.Write(clientJson.ToString()); - } - } + + #endregion + //****** "V2Ray安装成功,祝你玩的愉快!!" ******40 SetUpProgressBarProcessing(100); currentStatus = "V2Ray" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString(); @@ -12239,7 +12439,7 @@ namespace ProxySU private void Button_Click(object sender, RoutedEventArgs e) { //显示服务端连接参数 - proxyType = "V2Ray"; + proxyType = "Trojan"; ResultClientInformation resultClientInformation = new ResultClientInformation(); resultClientInformation.ShowDialog(); } diff --git a/ProxySU/Properties/AssemblyInfo.cs b/ProxySU/Properties/AssemblyInfo.cs index 6c62c37..3459e53 100644 --- a/ProxySU/Properties/AssemblyInfo.cs +++ b/ProxySU/Properties/AssemblyInfo.cs @@ -51,5 +51,5 @@ using System.Windows; // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 // 方法是按如下所示使用“*”: : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.3.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] +[assembly: AssemblyVersion("2.3.1.0")] +[assembly: AssemblyFileVersion("2.3.1.0")] diff --git a/ProxySU/ResultClientInformation.xaml b/ProxySU/ResultClientInformation.xaml index e6e99dd..a7e99d8 100644 --- a/ProxySU/ResultClientInformation.xaml +++ b/ProxySU/ResultClientInformation.xaml @@ -13,12 +13,12 @@ - + - + - + @@ -47,9 +47,6 @@ - - @@ -63,10 +60,6 @@ - - - @@ -75,9 +68,28 @@ - - + + + + + + + + + + + + + + + + + + + + + @@ -97,17 +109,18 @@ - + - + - + - + + @@ -127,14 +140,15 @@ - + - + - + + @@ -155,15 +169,15 @@ - + - + - + - - + + @@ -176,37 +190,35 @@ - - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + @@ -244,27 +256,28 @@ - + - + - + - + - + - + + diff --git a/ProxySU/ResultClientInformation.xaml.cs b/ProxySU/ResultClientInformation.xaml.cs index f29f2b6..dd6dcfa 100644 --- a/ProxySU/ResultClientInformation.xaml.cs +++ b/ProxySU/ResultClientInformation.xaml.cs @@ -29,6 +29,7 @@ namespace ProxySU public partial class ResultClientInformation : Window { private static string saveFileFolder = ""; + private static string configDomainSavePath = ""; private static string server = MainWindow.ReceiveConfigurationParameters[4]; [DllImport("user32.dll")] @@ -55,7 +56,7 @@ namespace ProxySU //用户ID(uuid) TextBoxUUID.Text = MainWindow.ReceiveConfigurationParameters[2]; //额外ID - TextBoxUUIDextra.Text = "16"; + TextBoxUUIDextra.Text = "0"; //加密方式,一般都为auto TextBoxEncryption.Text = "auto"; @@ -70,231 +71,269 @@ namespace ProxySU //QUIC密钥/mKCP Seed/路径Path TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6]; - //是否启用TLS + //TLS设置 TextBoxTLS.Text = "none"; - if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCP")) - { - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "none"; - ShowHostName(); - ShowPathV2ray(); + //初始化时,隐藏多方案客户端选择面板 + GroupBoxSelectVlessVmessXtlsTcpWs.Visibility = Visibility.Collapsed; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCPhttp")) + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == false) { - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "http"; - TextBoxTLS.Text = "none"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLS")) - { - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLSselfSigned")) - { - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessXtlsTcp")) - { - TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); - - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxEncryption.Text = "none"; - TextBoxTLS.Text = "tls"; - HideAlterId(); - ShowHostName(); - ShowPathV2ray(); - HideGroupBoxClientQRandURL(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb")) - { - TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); - - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxEncryption.Text = "none"; - TextBoxTLS.Text = "tls"; - HideAlterId(); - ShowHostName(); - ShowPathV2ray(); - HideGroupBoxClientQRandURL(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb")) - { - TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); - - TextBoxTransmission.Text = "ws"; - TextBoxCamouflageType.Text = "none"; - TextBoxEncryption.Text = "none"; - TextBoxTLS.Text = "tls"; - HideAlterId(); - ShowHostName(); - ShowPathV2ray(); - HideGroupBoxClientQRandURL(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessHttp2Web")) - { - TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); - - TextBoxTransmission.Text = "h2"; - TextBoxCamouflageType.Text = "none"; - TextBoxEncryption.Text = "none"; - TextBoxTLS.Text = "tls"; - HideAlterId(); - ShowHostName(); - ShowPathV2ray(); - HideGroupBoxClientQRandURL(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "webSocket")) - { - TextBoxTransmission.Text = "ws"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "none"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS")) - { - TextBoxTransmission.Text = "ws"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS2Web")) - { - TextBoxTransmission.Text = "ws"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned")) - { - TextBoxTransmission.Text = "ws"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Http2")) - { - TextBoxTransmission.Text = "h2"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2Web")) - { - TextBoxTransmission.Text = "h2"; - TextBoxCamouflageType.Text = "none"; - TextBoxHostQuicEncryption.Text = MainWindow.ReceiveConfigurationParameters[4];//获取Host - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2selfSigned")) - { - TextBoxTransmission.Text = "h2"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "tls"; - ShowHostName(); - ShowPathV2ray(); - } - else if (MainWindow.ReceiveConfigurationParameters[0].Contains("mKCP")) - { - if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPNone")) + #region 单模式方案 + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCP") == true) { + TextBoxTransmission.Text = "tcp"; TextBoxCamouflageType.Text = "none"; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2SRTP")) - { - TextBoxCamouflageType.Text = "srtp"; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPuTP")) - { - TextBoxCamouflageType.Text = "utp"; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WechatVideo")) - { - TextBoxCamouflageType.Text = "wechat-video"; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2DTLS")) - { - TextBoxCamouflageType.Text = "dtls"; - } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WireGuard")) - { - TextBoxCamouflageType.Text = "wireguard"; - } + TextBoxTLS.Text = "none"; + ShowHostName(); + ShowPathV2ray(); - TextBoxTransmission.Text = "kcp"; - TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6];//获取mkcp Seed - TextBoxTLS.Text = "none"; - ShowHostName(); - ShowMkcpSeed(); - } - else if (MainWindow.ReceiveConfigurationParameters[0].Contains("Quic") == true) - { - if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicNone")) + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCPhttp") == true) { + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "http"; + TextBoxTLS.Text = "none"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "tcp"; TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) + { + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxEncryption.Text = "none"; + TextBoxTLS.Text = "xtls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + HideGroupBoxClientQRandURL(); } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicSRTP")) + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) { - TextBoxCamouflageType.Text = "srtp"; + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxEncryption.Text = "none"; + TextBoxTLS.Text = "tls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + HideGroupBoxClientQRandURL(); } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Quic2uTP")) + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) { - TextBoxCamouflageType.Text = "utp"; + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxEncryption.Text = "none"; + TextBoxTLS.Text = "tls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + HideGroupBoxClientQRandURL(); } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWechatVideo")) + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) { - TextBoxCamouflageType.Text = "wechat-video"; + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmission.Text = "h2"; + TextBoxCamouflageType.Text = "none"; + TextBoxEncryption.Text = "none"; + TextBoxTLS.Text = "tls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + HideGroupBoxClientQRandURL(); } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicDTLS")) + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "webSocket") == true) { - TextBoxCamouflageType.Text = "dtls"; + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "none"; + ShowHostName(); + ShowPathV2ray(); } - else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWireGuard")) + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS") == true) { - TextBoxCamouflageType.Text = "wireguard"; + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) + { + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Http2") == true) + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "h2"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2Web") == true) + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "h2"; + TextBoxCamouflageType.Text = "none"; + TextBoxHostQuicEncryption.Text = MainWindow.ReceiveConfigurationParameters[4];//获取Host + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + TextBoxTransmission.Text = "h2"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowHostName(); + ShowPathV2ray(); + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPNone") == true) + { + TextBoxCamouflageType.Text = "none"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2SRTP") == true) + { + TextBoxCamouflageType.Text = "srtp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPuTP") == true) + { + TextBoxCamouflageType.Text = "utp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WechatVideo") == true) + { + TextBoxCamouflageType.Text = "wechat-video"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2DTLS") == true) + { + TextBoxCamouflageType.Text = "dtls"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WireGuard") == true) + { + TextBoxCamouflageType.Text = "wireguard"; + } + + TextBoxTransmission.Text = "kcp"; + TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6];//获取mkcp Seed + TextBoxTLS.Text = "none"; + ShowHostName(); + ShowMkcpSeed(); + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicNone") == true) + { + TextBoxCamouflageType.Text = "none"; + + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicSRTP") == true) + { + TextBoxCamouflageType.Text = "srtp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Quic2uTP") == true) + { + TextBoxCamouflageType.Text = "utp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWechatVideo") == true) + { + TextBoxCamouflageType.Text = "wechat-video"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicDTLS") == true) + { + TextBoxCamouflageType.Text = "dtls"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWireGuard") == true) + { + TextBoxCamouflageType.Text = "wireguard"; + } + + TextBoxTransmission.Text = "quic"; + TextBoxHostQuicEncryption.Text = MainWindow.ReceiveConfigurationParameters[3];//获取Quic加密方式 + TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6];//获取Quic加密密钥 + TextBoxTLS.Text = "none"; + ShowQuicEncryption(); + ShowQuicKey(); } - TextBoxTransmission.Text = "quic"; - TextBoxHostQuicEncryption.Text = MainWindow.ReceiveConfigurationParameters[3];//获取Quic加密方式 - TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6];//获取Quic加密密钥 - TextBoxTLS.Text = "none"; - ShowQuicEncryption(); - ShowQuicKey(); + else + { + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "none"; + ShowHostName(); + ShowPathV2ray(); + } + CheckDir("v2ray_config"); + + GenerateV2rayShareQRcodeAndBase64Url(); + #endregion } - else { - TextBoxTransmission.Text = "tcp"; - TextBoxCamouflageType.Text = "none"; - TextBoxTLS.Text = "none"; - ShowHostName(); - ShowPathV2ray(); - } - CheckDir("v2ray_config"); + GroupBoxSelectVlessVmessXtlsTcpWs.Visibility = Visibility.Visible; - GenerateV2rayShareQRcodeAndBase64Url(); + string proxyfolder = CheckDir("v2ray_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddress.Text); + + V2raySetVlessTcpXtls(); + GenerateV2rayVlessTcpXtlsShareQRcodeAndBase64Url(); + + V2raySetVlessTcpTls(); + GenerateV2rayVlessTcpTlsShareQRcodeAndBase64Url(); + + V2raySetVlessWsTls(); + GenerateV2rayVlessWsTlsShareQRcodeAndBase64Url(); + + V2raySetVmessTcpTls(); + GenerateV2rayVmessTcpTlsShareQRcodeAndBase64Url(); + + V2raySetVmessWsTls(); + GenerateV2rayVmessWsTlsShareQRcodeAndBase64Url(); + + RadioButtonVlessTcpXtls.IsChecked = true; + } + } else if (String.Equals(MainWindow.proxyType, "TrojanGo")) { @@ -499,8 +538,100 @@ namespace ProxySU } } + + #region V2ray参数设置函数 + + //设置VLESS over TCP with XTLS + private void V2raySetVlessTcpXtls() + { + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + TextBlockVmessOrVless.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "xtls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + TextBoxQuicKeyMkcpSeedPath.Text = ""; + + } + + //设置VLESS over TCP with TLS + private void V2raySetVlessTcpTls() + { + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + TextBlockVmessOrVless.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + TextBoxQuicKeyMkcpSeedPath.Text = ""; + } + + //设置VLESS over WS with TLS + private void V2raySetVlessWsTls() + { + TextBlockVmessOrVless.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + TextBlockVmessOrVless.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + HideAlterId(); + ShowHostName(); + ShowPathV2ray(); + TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[3]; + + } + + //设置VMess over TCP with TLS + private void V2raySetVmessTcpTls() + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "tcp"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowAlterId(); + ShowHostName(); + ShowPathV2ray(); + TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[9]; + TextBlockVmessOrVless.Visibility = Visibility.Collapsed; + //隐藏下面的二维码显示,因为V2rayN还未支持TCP Path模式。 + HideGroupBoxClientQRandURL(); + //ShowGroupBoxClientQRandURL(); + } + + //设置VMess over WS with TLS + private void V2raySetVmessWsTls() + { + TextBoxEncryption.Text = "none"; + TextBoxTransmission.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + TextBoxTLS.Text = "tls"; + ShowAlterId(); + ShowHostName(); + ShowPathV2ray(); + TextBoxQuicKeyMkcpSeedPath.Text = MainWindow.ReceiveConfigurationParameters[6]; + TextBlockVmessOrVless.Visibility = Visibility.Collapsed; + ShowGroupBoxClientQRandURL(); + } + #endregion + #region 界面控制相关 - + //显示Quic 加密方式 private void ShowQuicEncryption() { @@ -565,32 +696,34 @@ namespace ProxySU //隐藏二维码与链接分享 private void HideGroupBoxClientQRandURL() { - GroupBoxClientQRandURL.Visibility = Visibility.Collapsed; + GroupBoxClientQRandURL.Visibility = Visibility.Hidden; } - - //private void HidePath() - //{ - // TextBlockPath.Visibility = Visibility.Collapsed; - // TextBoxQuicKeyMkcpSeedPath.Visibility = Visibility.Collapsed; - //} - //private void ShowPath() - //{ - // TextBlockPath.Visibility = Visibility.Visible; - // TextBoxQuicKeyMkcpSeedPath.Visibility = Visibility.Visible; + //以下几个为对RadioButton按钮的选中后,界面变化与参数显示 + private void RadioButtonVlessTcpXtls_Checked(object sender, RoutedEventArgs e) + { + V2raySetVlessTcpXtls(); + } - //} - //private void HideQuicKey() - //{ - // TextBlockQuicKey.Visibility = Visibility.Collapsed; - // TextBoxQuicKeyMkcpSeedPath.Visibility = Visibility.Collapsed; - //} + private void RadioButtonVlessTcpTls_Checked(object sender, RoutedEventArgs e) + { + V2raySetVlessTcpTls(); + } - //private void ShowQuicKey() - //{ - // TextBlockQuicKey.Visibility = Visibility.Visible; - // TextBoxQuicKeyMkcpSeedPath.Visibility = Visibility.Visible; - //} + private void RadioButtonVlessWsTls_Checked(object sender, RoutedEventArgs e) + { + V2raySetVlessWsTls(); + } + + private void RadioButtonVmessTcpTls_Checked(object sender, RoutedEventArgs e) + { + V2raySetVmessTcpTls(); + } + + private void RadioButtonVmessWsTls_Checked(object sender, RoutedEventArgs e) + { + V2raySetVmessWsTls(); + } #endregion #region 复制参数到剪贴板中 @@ -682,7 +815,8 @@ namespace ProxySU #endregion - //生成v2rayN客户端导入文件 + #region V2Ray客户端生成 + //生成单方案v2rayN客户端导入文件 private void GenerateV2rayShareQRcodeAndBase64Url() { //生成v2rayN的json文件 @@ -729,39 +863,32 @@ namespace ProxySU v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 //MessageBox.Show(v2rayNjsonObject["v"].ToString()); - string saveFileFolderFirst = v2rayNjsonObject["ps"].ToString(); - int num = 1; - saveFileFolder = saveFileFolderFirst; - CheckDir(@"v2ray_config"); - while (Directory.Exists(@"v2ray_config\" + saveFileFolder)) - { - saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); - num++; - } - CheckDir(@"v2ray_config\" + saveFileFolder); + string proxyfolder = CheckDir("v2ray_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddress.Text); + string configSavePath = configDomainSavePath; + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); TextBoxURL.Text = vmessUrl; - using (StreamWriter sw = new StreamWriter($"v2ray_config\\{saveFileFolder}\\url.txt")) + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessXtlsTcp") == false + && String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false + && String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == false + && String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessHttp2Web") == false) { - if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) { sw.WriteLine(vmessUrl); } + ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"{configSavePath}\\QR.bmp"); } - if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) - { - ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); - } - - + if (File.Exists(@"v2ray_config\config.json")) { - File.Move(@"v2ray_config\config.json", @"v2ray_config\" + saveFileFolder + @"\config.json"); + File.Move(@"v2ray_config\config.json", $"{configSavePath}\\config.json"); //File.Delete(@"config\config.json");//删除该文件 } - using (StreamWriter sw = new StreamWriter($"v2ray_config\\{saveFileFolder}\\readme.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) { sw.WriteLine("config.json"); //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** @@ -802,62 +929,936 @@ namespace ProxySU //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); - sw.WriteLine("-----------------------------------------\n"); - - //****** "服务器通用连接配置参数" ****** - sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine12").ToString()); - //sw.Write(Application.Current.FindResource("readmeTxtV2RayExplain").ToString()); - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxHostAddress.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxPort.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockUserUUID").ToString() + $"{TextBoxUUID.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockV2RayAlterId").ToString() + $"{TextBoxUUIDextra.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxEncryption.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockTransferProtocol").ToString() + $"{TextBoxTransmission.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockCamouflageType").ToString() + $"{TextBoxCamouflageType.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockIsOrNotTLS").ToString() + $"{TextBoxTLS.Text}"); - sw.WriteLine("host:" + $"{TextBoxHostAddress.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockClientPath").ToString() + $"{TextBoxQuicKeyMkcpSeedPath.Text}"); - sw.WriteLine(Application.Current.FindResource("TextBlockClientMkcpQuicKey").ToString() + $"{TextBoxQuicKeyMkcpSeedPath.Text}"); - - } - - + //写入通用配置参数 + TxtWriteGeneralParameters(sw); +} } + #region VLESS VMESS XTLS WS共存方案生成链接与说明文件 + + //生成VLESS Vmess Tcp Xtls Ws 配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVlessVmessTcpXtlsWsShareQRcodeAndBase64Url(string plainSavePath) + { + #region 暂时不用内容 + // //生成v2rayN的json文件 + // string v2rayNjsonFile = @" + //{ + // ""v"": """", + // ""ps"": """", + // ""add"": """", + // ""port"": """", + // ""id"": """", + // ""aid"": """", + // ""net"": """", + // ""type"": """", + // ""host"": """", + // ""path"": """", + // ""tls"": """" + //}"; + // //MessageBox.Show(v2rayNjsonFile); + // JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); + // v2rayNjsonObject["v"] = "2"; + // v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 + // v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 + // v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid + // v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID + // v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 + // v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + + // if (TextBoxTransmission.Text.Contains("kcp") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed + // } + // else if (TextBoxTransmission.Text.Contains("quic") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 + // } + // else + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host + // } + + // v2rayNjsonObject["tls"] = TextBoxTLS.Text; //设置是否启用TLS + // v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + // //MessageBox.Show(v2rayNjsonObject["v"].ToString()); + + //string saveFileFolderFirst = TextBoxHostAddress.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir(@"v2ray_config"); + //while (Directory.Exists(@"v2ray_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"v2ray_config\" + saveFileFolder); + + #endregion + + //创建保存目录 + //string plainSavePath = @""; + + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + //string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = vmessUrl; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + // if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + // sw.WriteLine(vmessUrl); + // } + //} + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + // ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数 + TxtWriteGeneralParameters(sw); + } + } + + + //生成VLESS over TCP with XTLS的配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVlessTcpXtlsShareQRcodeAndBase64Url() + { + #region 暂时不用内容 + // //生成v2rayN的json文件 + // string v2rayNjsonFile = @" + //{ + // ""v"": """", + // ""ps"": """", + // ""add"": """", + // ""port"": """", + // ""id"": """", + // ""aid"": """", + // ""net"": """", + // ""type"": """", + // ""host"": """", + // ""path"": """", + // ""tls"": """" + //}"; + // //MessageBox.Show(v2rayNjsonFile); + // JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); + // v2rayNjsonObject["v"] = "2"; + // v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 + // v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 + // v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid + // v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID + // v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 + // v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + + // if (TextBoxTransmission.Text.Contains("kcp") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed + // } + // else if (TextBoxTransmission.Text.Contains("quic") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 + // } + // else + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host + // } + + // v2rayNjsonObject["tls"] = TextBoxTLS.Text; //设置是否启用TLS + // v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + // //MessageBox.Show(v2rayNjsonObject["v"].ToString()); + + //string saveFileFolderFirst = TextBoxHostAddress.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir(@"v2ray_config"); + //while (Directory.Exists(@"v2ray_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"v2ray_config\" + saveFileFolder); + + #endregion + + //创建保存目录 + string plainSavePath = @"vless_tcp_xtls_client_config"; + + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + //string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = vmessUrl; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + // if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + // sw.WriteLine(vmessUrl); + // } + //} + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + // ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParameters(sw,false); + + } + } + + //生成VLESS over TCP with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVlessTcpTlsShareQRcodeAndBase64Url() + { + #region 暂时不用内容 + // //生成v2rayN的json文件 + // string v2rayNjsonFile = @" + //{ + // ""v"": """", + // ""ps"": """", + // ""add"": """", + // ""port"": """", + // ""id"": """", + // ""aid"": """", + // ""net"": """", + // ""type"": """", + // ""host"": """", + // ""path"": """", + // ""tls"": """" + //}"; + // //MessageBox.Show(v2rayNjsonFile); + // JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); + // v2rayNjsonObject["v"] = "2"; + // v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 + // v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 + // v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid + // v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID + // v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 + // v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + + // if (TextBoxTransmission.Text.Contains("kcp") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed + // } + // else if (TextBoxTransmission.Text.Contains("quic") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 + // } + // else + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host + // } + + // v2rayNjsonObject["tls"] = TextBoxTLS.Text; //设置是否启用TLS + // v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + // //MessageBox.Show(v2rayNjsonObject["v"].ToString()); + + //string saveFileFolderFirst = TextBoxHostAddress.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir(@"v2ray_config"); + //while (Directory.Exists(@"v2ray_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"v2ray_config\" + saveFileFolder); + + #endregion + + //创建保存目录 + string plainSavePath = @"vless_tcp_tls_client_config"; + //v2ray_config\${域名IP} + //string configDomainSavePath = CreateConfigSaveDir(@"v2ray_config", TextBoxHostAddressSS.Text); + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + //string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = vmessUrl; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + // if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + // sw.WriteLine(vmessUrl); + // } + //} + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + // ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParameters(sw,false); + + } + } + + //生成VLESS over WS with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVlessWsTlsShareQRcodeAndBase64Url() + { + #region 暂时不用内容 + // //生成v2rayN的json文件 + // string v2rayNjsonFile = @" + //{ + // ""v"": """", + // ""ps"": """", + // ""add"": """", + // ""port"": """", + // ""id"": """", + // ""aid"": """", + // ""net"": """", + // ""type"": """", + // ""host"": """", + // ""path"": """", + // ""tls"": """" + //}"; + // //MessageBox.Show(v2rayNjsonFile); + // JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); + // v2rayNjsonObject["v"] = "2"; + // v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 + // v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 + // v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid + // v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID + // v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 + // v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + + // if (TextBoxTransmission.Text.Contains("kcp") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed + // } + // else if (TextBoxTransmission.Text.Contains("quic") == true) + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 + // } + // else + // { + // v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 + // v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host + // } + + // v2rayNjsonObject["tls"] = TextBoxTLS.Text; //设置是否启用TLS + // v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + // //MessageBox.Show(v2rayNjsonObject["v"].ToString()); + + //string saveFileFolderFirst = TextBoxHostAddress.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir(@"v2ray_config"); + //while (Directory.Exists(@"v2ray_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"v2ray_config\" + saveFileFolder); + + #endregion + + //创建保存目录 + string plainSavePath = @"vless_ws_tls_client_config"; + //v2ray_config\${域名IP} + //string configDomainSavePath = CreateConfigSaveDir(@"v2ray_config", TextBoxHostAddressSS.Text); + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + //string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = vmessUrl; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + // if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + // sw.WriteLine(vmessUrl); + // } + //} + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + // ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParameters(sw,false); + + } + } + + //生成VMess over TCP with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVmessTcpTlsShareQRcodeAndBase64Url() + { + #region 暂时不用内容 + //生成v2rayN的json文件 +// string v2rayNjsonFile = @" +//{ +// ""v"": """", +// ""ps"": """", +// ""add"": """", +// ""port"": """", +// ""id"": """", +// ""aid"": """", +// ""net"": """", +// ""type"": """", +// ""host"": """", +// ""path"": """", +// ""tls"": """" +//}"; +// //MessageBox.Show(v2rayNjsonFile); +// JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); +// v2rayNjsonObject["v"] = "2"; +// v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 +// v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 +// v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid +// v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID +// v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 +// v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + +// if (TextBoxTransmission.Text.Contains("kcp") == true) +// { +// v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed +// } +// else if (TextBoxTransmission.Text.Contains("quic") == true) +// { +// v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 +// v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 +// } +// else +// { +// v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 +// v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host +// } + +// v2rayNjsonObject["tls"] = TextBoxTLS.Text; //设置是否启用TLS +// v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + + + #endregion + + //创建保存目录 + string plainSavePath = @"vmess_tcp_tls_client_config"; + //v2ray_config\${域名IP} + //string configDomainSavePath = CreateConfigSaveDir(@"v2ray_config", TextBoxHostAddressSS.Text); + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + //string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = vmessUrl; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + //sw.WriteLine(vmessUrl); + //} + //} + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + //{ + //ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"{configSavePath}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParameters(sw); + + } + } + + //生成VMess over WS with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateV2rayVmessWsTlsShareQRcodeAndBase64Url() + { + #region 暂时不用内容 + //生成v2rayN的json文件 + string v2rayNjsonFile = @" +{ + ""v"": """", + ""ps"": """", + ""add"": """", + ""port"": """", + ""id"": """", + ""aid"": """", + ""net"": """", + ""type"": """", + ""host"": """", + ""path"": """", + ""tls"": """" +}"; + //MessageBox.Show(v2rayNjsonFile); + JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile); + v2rayNjsonObject["v"] = "2"; + v2rayNjsonObject["add"] = TextBoxHostAddress.Text; //设置域名 + v2rayNjsonObject["port"] = TextBoxPort.Text; //设置端口 + v2rayNjsonObject["id"] = TextBoxUUID.Text; //设置uuid + v2rayNjsonObject["aid"] = TextBoxUUIDextra.Text; //设置额外ID + v2rayNjsonObject["net"] = TextBoxTransmission.Text; //设置传输模式 + v2rayNjsonObject["type"] = TextBoxCamouflageType.Text; //设置伪装类型 + + if (TextBoxTransmission.Text.Contains("kcp") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置mKCP Seed + } + else if (TextBoxTransmission.Text.Contains("quic") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text;//设置quic密钥 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//Quic加密方式 + } + else + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPath.Text; //设置路径 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryption.Text;//设置TLS的Host + } + + v2rayNjsonObject["tls"] = "tls"; //设置是否启用TLS + v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + + #endregion + + //创建保存目录 + string plainSavePath = @"vmess_ws_tls_client_config"; + //v2ray_config\${域名IP} + //string configDomainSavePath = CreateConfigSaveDir(@"v2ray_config", TextBoxHostAddressSS.Text); + //v2ray_config\${域名IP}\vless_tcp_xtls_client_config + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + TextBoxURL.Text = vmessUrl; + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + { + //if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + sw.WriteLine(vmessUrl); + // } + } + // if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == false) + // { + ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"{configSavePath}\\QR.bmp"); + //} + + + if (File.Exists($"v2ray_config\\{plainSavePath}\\config.json")) + { + File.Move($"v2ray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"v2ray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString()); + + sw.WriteLine("-----------------------------------------"); + sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString()); + + //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString()); + + sw.WriteLine("-----------------------------------------"); + sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParameters(sw); + + } + } + + //TXT文件中写入通用配置参数--- + private void TxtWriteGeneralParameters(StreamWriter sw,bool alterId = true) + { + sw.WriteLine("-----------------------------------------\n"); + + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //****** "服务器通用连接配置参数:" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine12").ToString()); + sw.WriteLine(""); + + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxHostAddress.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockServerPort"; + strParam = TextBoxPort.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockUserUUID"; + strParam = TextBoxUUID.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + if (alterId == true) + { + strApplicat = "TextBlockV2RayAlterId"; + strParam = TextBoxUUIDextra.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + } + + strApplicat = "TextBlockEncryption"; + strParam = TextBoxEncryption.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockTransferProtocol"; + strParam = TextBoxTransmission.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockCamouflageType"; + strParam = TextBoxCamouflageType.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockIsOrNotTLS"; + strParam = TextBoxTLS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + if (MainWindow.ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + strParam = TextBoxHostQuicEncryption.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockQuicEncryption.Text, strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPath.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockQuicKey.Text, strLenth) + strParam); + + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + strParam = TextBoxHostQuicEncryption.Text; + sw.WriteLine(AlignmentStrFunc("host:", strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPath.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockMkcpSeed.Text, strLenth) + strParam); + + } + else + { + strParam = TextBoxHostQuicEncryption.Text; + sw.WriteLine(AlignmentStrFunc("host:", strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPath.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockPath.Text, strLenth) + strParam); + } + } + #endregion + + #endregion + //生成TrojanGo客户端资料 private void GenerateTrojanGoShareQRcodeAndBase64Url() { + string proxyfolder = CheckDir("trojan-go_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxTrojanGoServerHost.Text); + string configSavePath = configDomainSavePath; + //string saveFileFolderFirst = TextBoxTrojanGoServerHost.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; - string saveFileFolderFirst = TextBoxTrojanGoServerHost.Text; - int num = 1; - saveFileFolder = saveFileFolderFirst; - CheckDir("trojan-go_config"); - while (Directory.Exists(@"trojan-go_config\" + saveFileFolder)) - { - saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); - num++; - } - CheckDir(@"trojan-go_config\" + saveFileFolder); + //while (Directory.Exists(@"trojan-go_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"trojan-go_config\" + saveFileFolder); string trojanUrl = $"trojan://{TextBoxTrojanGoServerPassword.Text}@{TextBoxTrojanGoServerHost.Text}:{TextBoxTrojanGoServerPort.Text}?allowinsecure=0&tfo=0&sni=&mux=0&ws=0&group=#{TextBoxTrojanGoServerHost.Text}"; //MessageBox.Show(v2rayNjsonObject.ToString()); //string trojanUrl = "trojan://" + ToBase64Encode(v2rayNjsonObject.ToString()); TextBoxURL.Text = trojanUrl; - using (StreamWriter sw = new StreamWriter($"trojan-go_config\\{saveFileFolder}\\url.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) { sw.WriteLine(trojanUrl); } - ImageShareQRcode.Source = CreateQRCode(trojanUrl, $"trojan-go_config\\{saveFileFolder}\\QR.bmp"); + ImageShareQRcode.Source = CreateQRCode(trojanUrl, $"{configSavePath}\\QR.bmp"); //移动Trojan官方程序配置文件到相应目录 if (File.Exists(@"trojan-go_config\config.json")) { - File.Move(@"trojan-go_config\config.json", @"trojan-go_config\" + saveFileFolder + @"\config.json"); + File.Move(@"trojan-go_config\config.json", $"{configSavePath}\\config.json"); //File.Delete(@"config\config.json");//删除该文件 } - using (StreamWriter sw = new StreamWriter($"trojan-go_config\\{saveFileFolder}\\readme.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) { sw.WriteLine("config.json"); @@ -894,58 +1895,100 @@ namespace ProxySU sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine09").ToString()); sw.WriteLine("-----------------------------------------\n"); + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //sw.WriteLine("服务器通用连接配置参数"); sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine10").ToString()); + sw.WriteLine(""); //****** 服务器地址(address): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}"); + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxTrojanGoServerHost.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 端口(port): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}"); + strApplicat = "TextBlockServerPort"; + strParam = TextBoxTrojanGoServerPort.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 密码: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}"); + strApplicat = "TextBlockTrojanGoPassword"; + strParam = TextBoxTrojanGoServerPassword.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** WebSocket路径: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}"); + strApplicat = "TextBlockTrojanGoWebSocketPath"; + strParam = TextBoxTrojanGoWSPath.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); } } + #region TrojanGo内容双击复制到剪贴板 + private void TextBoxTrojanGoServerHost_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanGoServerHost.Text); + } + + private void TextBoxTrojanGoServerPort_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanGoServerPort.Text); + } + + private void TextBoxTrojanGoServerPassword_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanGoServerPassword.Text); + } + + private void TextBoxTrojanGoWSPath_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanGoWSPath.Text); + } + #endregion + //生成Trojan客户端资料 private void GenerateTrojanShareQRcodeAndBase64Url() { + string proxyfolder = CheckDir("trojan_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxTrojanServerHost.Text); + string configSavePath = configDomainSavePath; - string saveFileFolderFirst = TextBoxTrojanServerHost.Text; - int num = 1; - saveFileFolder = saveFileFolderFirst; - CheckDir("trojan_config"); - while (Directory.Exists(@"trojan_config\" + saveFileFolder)) - { - saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); - num++; - } - CheckDir(@"trojan_config\" + saveFileFolder); + //string saveFileFolderFirst = TextBoxTrojanServerHost.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir("trojan_config"); + //while (Directory.Exists(@"trojan_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"trojan_config\" + saveFileFolder); string trojanUrl = $"trojan://{TextBoxTrojanServerPassword.Text}@{TextBoxTrojanServerHost.Text}:{TextBoxTrojanServerPort.Text}#{TextBoxTrojanServerHost.Text}"; //MessageBox.Show(v2rayNjsonObject.ToString()); //string trojanUrl = "trojan://" + ToBase64Encode(v2rayNjsonObject.ToString()); TextBoxURL.Text = trojanUrl; - using (StreamWriter sw = new StreamWriter($"trojan_config\\{saveFileFolder}\\url.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) { sw.WriteLine(trojanUrl); } - ImageShareQRcode.Source = CreateQRCode(trojanUrl, $"trojan_config\\{saveFileFolder}\\QR.bmp"); + ImageShareQRcode.Source = CreateQRCode(trojanUrl, $"{configSavePath}\\QR.bmp"); //移动Trojan官方程序配置文件到相应目录 if (File.Exists(@"trojan_config\config.json")) { - File.Move(@"trojan_config\config.json", @"trojan_config\" + saveFileFolder + @"\config.json"); + File.Move(@"trojan_config\config.json", $"{configSavePath}\\config.json"); //File.Delete(@"config\config.json");//删除该文件 } - using (StreamWriter sw = new StreamWriter($"trojan_config\\{saveFileFolder}\\readme.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) { sw.WriteLine("config.json"); @@ -982,43 +2025,78 @@ namespace ProxySU sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine09").ToString()); sw.WriteLine("-----------------------------------------\n"); + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //sw.WriteLine("服务器通用连接配置参数"); sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine10").ToString()); + sw.WriteLine(""); //****** 服务器地址(address): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}"); + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxTrojanServerHost.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 端口(port): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}"); + strApplicat = "TextBlockServerPort"; + strParam = TextBoxTrojanServerPort.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 密码: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}"); //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}"); + strApplicat = "TextBlockTrojanGoPassword"; + strParam = TextBoxTrojanServerPassword.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); } } + #region Trojan内容双击复制到剪贴板 + + private void TextBoxTrojanServerHost_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanServerHost.Text); + } + + private void TextBoxTrojanServerPort_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanServerPort.Text); + } + + private void TextBoxTrojanServerPassword_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTrojanServerPassword.Text); + } + + #endregion //生成NaiveProxy客户端资料 private void GenerateNaivePrxoyShareQRcodeAndBase64Url() { + string proxyfolder = CheckDir("naive_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxNaiveServerHost.Text); + string configSavePath = configDomainSavePath; - string saveFileFolderFirst = TextBoxNaiveServerHost.Text; - int num = 1; - saveFileFolder = saveFileFolderFirst; - CheckDir("naive_config"); - while (Directory.Exists(@"naive_config\" + saveFileFolder)) - { - saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); - num++; - } - CheckDir(@"naive_config\" + saveFileFolder); + //string saveFileFolderFirst = TextBoxNaiveServerHost.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir("naive_config"); + //while (Directory.Exists(@"naive_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"naive_config\" + saveFileFolder); string naiveUrl = $"https://{TextBoxNaiveUser.Text}:{TextBoxNaivePassword.Text}@{TextBoxNaiveServerHost.Text}:443/?name={TextBoxNaiveServerHost.Text}&extra_headers="; //MessageBox.Show(v2rayNjsonObject.ToString()); //string trojanUrl = "trojan://" + ToBase64Encode(v2rayNjsonObject.ToString()); TextBoxURL.Text = naiveUrl; - using (StreamWriter sw = new StreamWriter($"naive_config\\{saveFileFolder}\\url.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) { sw.WriteLine(naiveUrl); @@ -1028,11 +2106,11 @@ namespace ProxySU //移动NaiveProxy官方程序配置文件到相应目录 if (File.Exists(@"naive_config\config.json")) { - File.Move(@"naive_config\config.json", @"naive_config\" + saveFileFolder + @"\config.json"); + File.Move(@"naive_config\config.json", $"{configSavePath}\\config.json"); //File.Delete(@"config\config.json");//删除该文件 } - using (StreamWriter sw = new StreamWriter($"naive_config\\{saveFileFolder}\\readme.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) { sw.WriteLine("config.json"); @@ -1060,46 +2138,87 @@ namespace ProxySU sw.WriteLine("-----------------------------------------\n"); + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //sw.WriteLine("服务器通用连接配置参数"); sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine07").ToString()); + sw.WriteLine(""); //****** 服务器地址(address): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxNaiveServerHost.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxNaiveServerHost.Text}"); + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxNaiveServerHost.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 用户名:****** - sw.WriteLine(Application.Current.FindResource("TextBlockHostUser").ToString() + $"{TextBoxNaiveUser.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockHostUser").ToString() + $"{TextBoxNaiveUser.Text}"); + strApplicat = "TextBlockHostUser"; + strParam = TextBoxNaiveUser.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 密码: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxNaivePassword.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxNaivePassword.Text}"); + strApplicat = "TextBlockTrojanGoPassword"; + strParam = TextBoxNaivePassword.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); } } + #region NaiveProxy内容双击复制到剪贴板 + private void TextBoxNaiveServerHost_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxNaiveServerHost.Text); + } + + private void TextBoxNaivePort_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxNaivePort.Text); + } + + private void TextBoxNaiveUser_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxNaiveUser.Text); + } + + private void TextBoxNaivePassword_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxNaivePassword.Text); + } + + + + #endregion + //生成SSR客户端资料 private void GenerateSSRShareQRcodeAndBase64Url() { - - string saveFileFolderFirst = TextBoxSSRHostAddress.Text; - int num = 1; - saveFileFolder = saveFileFolderFirst; - CheckDir("ssr_config"); - while (Directory.Exists(@"ssr_config\" + saveFileFolder)) - { - saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); - num++; - } - CheckDir(@"ssr_config\" + saveFileFolder); + string proxyfolder = CheckDir("ssr_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxSSRHostAddress.Text); + string configSavePath = configDomainSavePath; + //string saveFileFolderFirst = TextBoxSSRHostAddress.Text; + //int num = 1; + //saveFileFolder = saveFileFolderFirst; + //CheckDir("ssr_config"); + //while (Directory.Exists(@"ssr_config\" + saveFileFolder)) + //{ + // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString(); + // num++; + //} + //CheckDir(@"ssr_config\" + saveFileFolder); string ssrUrl = GetSSRLinkForServer(); TextBoxURL.Text = ssrUrl; - using (StreamWriter sw = new StreamWriter($"ssr_config\\{saveFileFolder}\\url.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) { sw.WriteLine(ssrUrl); } - ImageShareQRcode.Source = CreateQRCode(ssrUrl, $"ssr_config\\{saveFileFolder}\\QR.bmp"); + ImageShareQRcode.Source = CreateQRCode(ssrUrl, $"{configSavePath}\\QR.bmp"); - using (StreamWriter sw = new StreamWriter($"ssr_config\\{saveFileFolder}\\readme.txt")) + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) { //sw.WriteLine("-----------------------------------------\n"); sw.WriteLine("QR.bmp"); @@ -1122,38 +2241,93 @@ namespace ProxySU sw.WriteLine(Application.Current.FindResource("readmeTxtSSRExplainLine09").ToString()); sw.WriteLine("-----------------------------------------\n"); + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //***"服务器通用连接配置参数"*** sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine10").ToString()); + sw.WriteLine(""); //****** 服务器地址(address): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{ TextBoxSSRHostAddress.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{ TextBoxSSRHostAddress.Text}"); + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxSSRHostAddress.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 端口(port): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxSSRPort.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxSSRPort.Text}"); + strApplicat = "TextBlockServerPort"; + strParam = TextBoxSSRPort.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 密码: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxSSRUUID.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxSSRUUID.Text}"); + strApplicat = "TextBlockTrojanGoPassword"; + strParam = TextBoxSSRUUID.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 加密方式: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxSSREncryption.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxSSREncryption.Text}"); + strApplicat = "TextBlockEncryption"; + strParam = TextBoxSSREncryption.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 传输协议: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTransferProtocol").ToString() + $"{TextBoxSSRTransmission.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTransferProtocol").ToString() + $"{TextBoxSSRTransmission.Text}"); + strApplicat = "TextBlockTransferProtocol"; + strParam = TextBoxSSRTransmission.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 混淆: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockCamouflageType").ToString() + $"{TextBoxSSRCamouflageType.Text}"); - - //****** 密码: ****** - //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockCamouflageType").ToString() + $"{TextBoxSSRCamouflageType.Text}"); + strApplicat = "TextBlockCamouflageType"; + strParam = TextBoxSSRCamouflageType.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); } } + #region SSR内容双击复制到剪贴板 + private void TextBoxSSRHostAddress_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSRHostAddress.Text); + } + + private void TextBoxSSRPort_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSRPort.Text); + } + + private void TextBoxSSRUUID_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSRUUID.Text); + } + + private void TextBoxSSREncryption_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSREncryption.Text); + } + + private void TextBoxSSRTransmission_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSRTransmission.Text); + } + + private void TextBoxSSRCamouflageType_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxSSRCamouflageType.Text); + } + #endregion + //生成SS客户端资料 private void GenerateShareQRcodeAndBase64UrlSS() { //创建保存目录 - string configSavePath = CreateConfigSaveDir(@"ss_config", TextBoxHostAddressSS.Text); + string proxyfolder = CheckDir("ss_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddressSS.Text); + string configSavePath = configDomainSavePath; + //string configSavePath = CreateConfigSaveDir(@"ss_config", TextBoxHostAddressSS.Text); string ssUrl; //生成手机端的URL(无插件时,为电脑手机通用) @@ -1236,29 +2410,52 @@ namespace ProxySU sw.WriteLine(Application.Current.FindResource("readmeTxtExplainLineSS06").ToString()); sw.WriteLine("-----------------------------------------\n"); + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //***"服务器通用连接配置参数"*** sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine10").ToString()); + sw.WriteLine(""); //****** 服务器地址(address): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxHostAddressSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxHostAddressSS.Text}"); + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxHostAddressSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 端口(port): ****** - sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxPortSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxPortSS.Text}"); + strApplicat = "TextBlockServerPort"; + strParam = TextBoxPortSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 密码: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxPasswordSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxPasswordSS.Text}"); + strApplicat = "TextBlockTrojanGoPassword"; + strParam = TextBoxPasswordSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 加密方式: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxEncryptionSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxEncryptionSS.Text}"); + strApplicat = "TextBlockEncryption"; + strParam = TextBoxEncryptionSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); if (String.IsNullOrEmpty(TextBoxPluginNameExplainSS.Text) == false) { //****** 插件程序:: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockPluginNameExplainSS").ToString() + $"{TextBoxPluginNameExplainSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockPluginNameExplainSS").ToString() + $"{TextBoxPluginNameExplainSS.Text}"); + strApplicat = "TextBlockPluginNameExplainSS"; + strParam = TextBoxPluginNameExplainSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); //****** 插件选项: ****** - sw.WriteLine(Application.Current.FindResource("TextBlockPluginOptionExplainSS").ToString() + $"{TextBoxPluginOptionExplainSS.Text}"); + //sw.WriteLine(Application.Current.FindResource("TextBlockPluginOptionExplainSS").ToString() + $"{TextBoxPluginOptionExplainSS.Text}"); + strApplicat = "TextBlockPluginOptionExplainSS"; + strParam = TextBoxPluginOptionExplainSS.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); sw.WriteLine("-----------------------------------------\n"); //****** 插件使用说明 ****** @@ -1322,6 +2519,37 @@ namespace ProxySU } } + #region SS内容双击复制到剪贴板 + private void TextBoxHostAddressSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxHostAddressSS.Text); + } + + private void TextBoxPortSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxPortSS.Text); + } + + private void TextBoxPasswordSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxPasswordSS.Text); + } + + private void TextBoxEncryptionSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxEncryptionSS.Text); + } + + private void TextBoxPluginNameExplainSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxPluginNameExplainSS.Text); + } + + private void TextBoxPluginOptionExplainSS_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxPluginOptionExplainSS.Text); + } + #endregion //生成base64 private string ToBase64Encode(string text) @@ -1352,17 +2580,17 @@ namespace ProxySU } //判断目录是否存在,不存在则创建 - private bool CheckDir(string folder) + private string CheckDir(string folder) { try { if (!Directory.Exists(folder))//如果不存在就创建file文件夹 Directory.CreateDirectory(folder);//创建该文件夹   - return true; + return folder; } catch (Exception) { - return false; + return ""; } } @@ -1375,7 +2603,7 @@ namespace ProxySU int num = 1; saveFileFolder = configDir; CheckDir(upperDir); - while (Directory.Exists(upperDir + @"\" + saveFileFolder)) + while (Directory.Exists(upperDir + @"\" + saveFileFolder) == true) { saveFileFolder = configDir + "_copy_" + num.ToString(); num++; @@ -1581,7 +2809,46 @@ namespace ProxySU GroupBoxClientSSpc.Visibility = Visibility.Visible; } - + /// + ///生成固定长度的空格字符串 + /// + /// + /// + + private string SpaceStrFunc(int length) + { + string strReturn = string.Empty; + if (length > 0) + { + for (int i = 0; i < length; i++) + { + strReturn += " "; + } + } + return strReturn; + } + + /// + ///将字符串生转化为固定长度左对齐,右补空格 + /// + ///需要补齐的字符串 + ///补齐后的长度 + /// + + private string AlignmentStrFunc(string strTemp, int length) + { + byte[] byteStr = System.Text.Encoding.Default.GetBytes(strTemp.Trim()); + int iLength = byteStr.Length; + int iNeed = length - iLength; + + byte[] spaceLen = Encoding.Default.GetBytes(" "); //一个空格的长度 + iNeed = iNeed / spaceLen.Length; + + string spaceString = SpaceStrFunc(iNeed); + //return strTemp + spaceString; + return spaceString + strTemp; + } + } diff --git a/ProxySU/Translations/ProxySU.en-US.xaml b/ProxySU/Translations/ProxySU.en-US.xaml index 31df416..e441df5 100644 --- a/ProxySU/Translations/ProxySU.en-US.xaml +++ b/ProxySU/Translations/ProxySU.en-US.xaml @@ -111,8 +111,9 @@ OK Cancel - V2Ray template library - Popular Plan + V2Ray Templates + Recommend + EarlyPlan VLESS VLESS is a lightweight transmission protocol. Unlike VMess, VLESS don't depend on the system time. The authentication method is also UUID, but alterId is not required. Currently VLESS does not have its own encryption, please use it for reliable channels, such as TLS. Advantages: It can effectively reduce host resource consumption. Currently VLESS does not support sharing. Please ensure that both the client and server v2ray-core are the latest version. XTLS works well on devices with low performance or without AES hard-decoding. For example, XTLS is used on hard routers, and the network speed can be doubled when the CPU is full, or the same The CPU occupancy rate is halved at Internet speed, and for mobile devices, the reduction in the amount of calculation means power saving.Version requires 4.29+ (Domain required) Not support CDN. @@ -133,12 +134,16 @@ mKCP Seed: Enable the mKCP Seed key to enhance anti-recognition, leave it blank to disable it. Version 4.24.2+ Path: - QUIC Encryption: + VLESS ws path: + VMESS tcp path: + VMESS ws path: + QUIC Encryption: Domain name: Mask a website: Set this item to increase the concealment of the agent (may be empty) Strong stability, Caddy2 as the front, hidden proxy feature, recognized as https traffic to the website, the strongest anti-blocking recognition, domain name is required, CDN support based on HTTP/2 transmission. Completely implemented in accordance with the HTTP/2 standard, with Caddy2 as the front, hidden proxy features, H2C protocol forwarding to V2Ray, domain name is required, and CloudFlare CDN is not currently supported + VLESS over TCP with XTLS + fallback and shunt to WHATEVER (ultimate configuration), configured and recommended by rprx boss (author of xtls), configure the following five solutions at the same time on the server side, sharing the same domain name and port 443, WS can pass through CDN.Option 4 has a special configuration, there is no graphics client support at present, you can use the official V2Ray client. Encrypted data transmission will be recognized as unknown tcp traffic TCP+Http camouflage Encrypted data transmission and HTTP disguise will be recognized as http traffic, but not real http access @@ -190,7 +195,7 @@ Encryption method: Transfer Protocol: Camouflage type(Confuse): - TLS: + TLS Set: Tip: Double-click the above content window to copy it to the clipboard. Path: mKCP Seed/QUIC key: diff --git a/ProxySU/Translations/ProxySU.zh-CN.xaml b/ProxySU/Translations/ProxySU.zh-CN.xaml index 60df92c..8423b23 100644 --- a/ProxySU/Translations/ProxySU.zh-CN.xaml +++ b/ProxySU/Translations/ProxySU.zh-CN.xaml @@ -118,6 +118,7 @@ V2Ray 模板库 推荐方案 + 尝鲜方案 VLESS协议 VLESS 是一个无状态的轻量传输协议,与 VMess 不同,VLESS 不依赖于系统时间,认证方式同样为 UUID,但不需要 alterId。目前 VLESS 没有自带加密,请用于可靠信道,如 TLS。优点:可以有效的降低主机资源消耗。目前 VLESS 不支持分享。VLESS 处于公测阶段,测试期间请确保客户端与服务端的 v2ray-core 均为最新版本。 XTLS 在低性能或没有 AES 硬解的设备上效果出众,如在硬路由上换用 XTLS,同样跑满 CPU 时实现网速 翻倍,或是相同网速时 CPU 占用率减半,而对于移动设备,计算量减少意味着省电。服务端客户端版本要求4.29+ (需域名)不支持CDN。 @@ -139,15 +140,20 @@ mKCP Seed: 启用mKCP Seed密钥,可增强抗识别,留空则禁用,要求版本4.24.2+ 路径: - QUIC加密方式: + VLESS ws路径: + VMESS tcp路径: + VMESS ws路径: + + QUIC加密方式: 域名: 伪装网站: 设置此项可增加代理的隐蔽(可为空) 稳定性强,Caddy2做前置,隐藏代理特征,被识别为访问网站的https流量,抗封锁识别最强,需要域名,支持CDN 基于 HTTP/2 传输。完整按 HTTP/2 标准实现,Caddy2做前置,隐藏代理特征,H2C协议转发到V2Ray,需要域名,暂不支持CloudFlare的CDN - 数据加密传输,会被识别为未知的tcp流量 + VLESS over TCP with XTLS + 回落 and 分流 to WHATEVER(终极配置),由rprx大佬 (xtls作者) 配置并推荐,在服务端同时配置以下五种方案,共用同一域名与443端口,其中 WS 都可以通过 CDN。方案4 配置特别,目前尚无图形客户端支持,可使用V2Ray官方客户端。 TCP+Http伪装 - 数据加密传输,并做http伪装,会被识别为http流量,但并不是真正的http访问 + 数据加密传输,会被识别为未知的tcp流量 + 数据加密传输,并做http伪装,会被识别为http流量,但并不是真正的http访问 数据加密传输,传输协议使用TLS,会被识别为TLS流量,不等同于https流量特征 (需域名) TCP+TLS(自签证书) 数据加密传输,传输协议使用TLS,会被识别为TLS流量,不等同于https流量特征 (无需域名) @@ -196,7 +202,7 @@ 加密方式: 传输协议: 伪装类型(混淆): - 是否使用TLS: + TLS设置: 提示:双击以上内容窗,即可复制到剪贴板中。 路径(Path): QUIC密钥: @@ -350,7 +356,7 @@ v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。 此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址 - 服务器通用连接配置参数 + 服务器通用连接配置参数: 此文件为Trojan-go官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080 Trojan-go官方网站:https://github.com/p4gefau1t/trojan-go diff --git a/ProxySU/Translations/ProxySU.zh-TW.xaml b/ProxySU/Translations/ProxySU.zh-TW.xaml index 03af2a7..fc3ad9a 100644 --- a/ProxySU/Translations/ProxySU.zh-TW.xaml +++ b/ProxySU/Translations/ProxySU.zh-TW.xaml @@ -115,6 +115,7 @@ V2Ray 模板庫 推薦方案 + 嚐鮮方案 VLESS協議 VLESS 是一個無狀態的輕量傳輸協議,與 VMess 不同,VLESS 不依賴於系統時間,認證方式同樣為 UUID,但不需要 alterId。目前 VLESS 沒有自帶加密,請用於可靠信道,如 TLS。優點:可以有效的降低主機資源消耗。目前 VLESS 不支持分享。 VLESS 處於公測階段,測試期間請確保客戶端與服務端的 v2ray-core 均為最新版本。 XTLS 在低性能或沒有AES 硬解的設備上效果出眾,如在硬路由上換用XTLS,同樣跑滿CPU 時實現網速翻倍,或是相同網速時CPU 佔用率減半,而對於移動設備,計算量減少意味著省電。服務端客戶端版本要求4.29+ (需域名)不支持CDN。 @@ -135,12 +136,16 @@ mKCP Seed: 啟用mKCP Seed密鑰,可增強抗識別,留空則禁用,要求版本4.24.2+ 路徑: - QUIC加密方式: + VLESS ws路徑: + VMESS tcp路徑: + VMESS ws路徑: + QUIC加密方式: 域名: 偽裝網站: 設置此項可增加代理的隱蔽(可為空) 穩定性強,Caddy2做前置,隱藏代理特徵,被識別為訪問網站的https流量,抗封鎖識別最強,需要域名,支持CDN 基於 HTTP/2 傳輸。完整按 HTTP/2 標準實現,Caddy2做前置,隱藏代理特徵,H2C協議轉發到V2Ray,需要域名,暫不支持CloudFlare的CDN + VLESS over TCP with XTLS + 回落and 分流to WHATEVER(終極配置),由rprx大佬(xtls作者)配置並推薦,在服務端同時配置以下五種方案,共用同一域名與443端口,其中 WS 都可以通過 CDN。方案4 配置特別,目前尚無圖形客戶端支持,可使用V2Ray官方客戶端。 數據加密傳輸,會被識別為未知的tcp流量 TCP+Http偽裝 數據加密傳輸,並做http偽裝,會被識別為http流量,但並不是真正的http訪問 @@ -192,7 +197,7 @@ 加密方式: 傳輸協議: 偽裝類型(混淆): - 是否使用TLS: + TLS設置: 提示:雙擊以上內容窗,即可複製到剪貼板中。 路徑(Path): mKCP Seed/QUIC密鑰: diff --git a/ProxySU/V2RayTemplateWindow.xaml b/ProxySU/V2RayTemplateWindow.xaml index 9438af8..b00ed7b 100644 --- a/ProxySU/V2RayTemplateWindow.xaml +++ b/ProxySU/V2RayTemplateWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:ProxySU" mc:Ignorable="d" - Title="V2RayTemplateConfiguration" Height="600" Width="850"> + Title="V2RayTemplateConfiguration" Height="600" Width="950">