diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml index 354d236..fddda06 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.4.25 Beta2" Height="675" Width="650"> + Title="ProxySU - v2.5.0 Beta1" Height="675" Width="660"> @@ -165,7 +165,100 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -257,7 +350,8 @@ - + + @@ -310,7 +404,7 @@ - + diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index 07905d5..01c16e9 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -151,17 +151,11 @@ namespace ProxySU //初始化SSR的密码 TextBoxSSRPassword.Text = RandomUUID(); - //初始化所选方案面板为不显示 + //初始化V2Ray所选方案面板为不显示 GridV2rayCurrentlyPlan.Visibility = Visibility.Hidden; - //初始化三合一的所有内容 - //TextBoxV2rayUUID3in1.Text = RandomUUID(); - //TextBoxV2rayPath3in1.Text = "/ray"; - - //TextBoxTrojanPassword3in1.Text= RandomUUID(); - - //TextBoxNaiveUser3in1.Text = RandomUserName(); - //TextBoxNaivePassword3in1.Text= RandomUUID(); + //初始化Xray所选方案面板为不显示 + GridXrayCurrentlyPlan.Visibility = Visibility.Hidden; //自动检查ProxySU是否有新版本发布,有则显示更新提示 Thread thread = new Thread(() => TestLatestVersionProxySU(TextBlockLastVersionProxySU, TextBlockNewVersionReminder, ButtonUpgradeProxySU)); @@ -743,6 +737,7 @@ namespace ProxySU } + #region V2Ray相关 //打开v2ray模板设置窗口 @@ -1225,14 +1220,27 @@ namespace ProxySU client.RunCommand("mv /etc/caddy/Caddyfile /etc/caddy/Caddyfile.bak"); UploadConfig(connectionInfo, serverConfig, upLoadPath); - //设置Caddy配置文件 - functionResult = SetCaddyfile(client, upLoadPath); - if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + functionResult = FileCheckExists(client, @"/etc/caddy/Caddyfile"); + if (functionResult == false) + { + //****** "Caddy配置文件上传失败!" ******32 + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigFailed").ToString(); + MainWindowsShowInfo(currentStatus); + FunctionResultErr(); + client.Disconnect(); + return; + } //****** "Caddy配置文件上传成功,OK!" ******32 SetUpProgressBarProcessing(70); currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigOK").ToString(); MainWindowsShowInfo(currentStatus); + + //设置Caddy配置文件 + functionResult = SetCaddyfile(client, upLoadPath); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + #endregion //启动Caddy服务 @@ -2188,12 +2196,10 @@ namespace ProxySU functionResult = FileCheckExists(client, @"/usr/local/bin/v2ray"); if (functionResult == false) { - //******"退出!原因:远程主机未安装V2ray"****** - MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "V2Ray!"); //******"退出!原因:远程主机未安装V2ray"****** currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "V2Ray!"; MainWindowsShowInfo(currentStatus); - + MessageBox.Show(currentStatus); client.Disconnect(); return; @@ -2297,6 +2303,1570 @@ namespace ProxySU } #endregion + #region Xray相关 + //打开Xray模板设置窗口 + private void ButtonTemplateConfigurationXray_Click(object sender, RoutedEventArgs e) + { + //清空初始化模板参数 + for (int i = 0; i != ReceiveConfigurationParameters.Length; i++) + + { + ReceiveConfigurationParameters[i] = ""; + } + XrayWindowTemplateConfiguration XraywindowTemplateConfiguration = new XrayWindowTemplateConfiguration(); + XraywindowTemplateConfiguration.Closed += XraywindowTemplateConfigurationClosed; + XraywindowTemplateConfiguration.ShowDialog(); + } + + //Xay模板设置窗口关闭后,触发事件,将所选的方案与其参数显示在UI上 + private void XraywindowTemplateConfigurationClosed(object sender, System.EventArgs e) + { + if (String.IsNullOrEmpty(ReceiveConfigurationParameters[0]) == true) + { + //显示"未选择方案!" + TextBlockCurrentlySelectedPlanXray.Text = Application.Current.FindResource("TextBlockCurrentlySelectedPlanNo").ToString(); + + GridXrayCurrentlyPlan.Visibility = Visibility.Hidden; + + return; + } + else + { + GridXrayCurrentlyPlan.Visibility = Visibility.Visible; + } + TextBlockCurrentlySelectedPlanXray.Text = ReceiveConfigurationParameters[8]; //所选方案名称 + TextBlockCurrentlySelectedPlanPortXray.Text = ReceiveConfigurationParameters[1]; //服务器端口 + TextBlockCurrentlySelectedPlanUUIDXray.Text = ReceiveConfigurationParameters[2]; //UUID + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + //MessageBox.Show(ReceiveConfigurationParameters[7]); + TextBlockCurrentlySelectedPlanFakeWebsiteXray.Text = ReceiveConfigurationParameters[7]; //伪装网站 + + 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) + { + //隐藏Path/mKCP Seed/Quic Key + HideXayPathSeedKey(); + HideVlessVmessXtlsTcpWsXray(); + + //隐藏域名/Quic加密方式 + HideXrayDomainQuicEncrypt(); + + //隐藏伪装网站 + HideXrayMaskSites(); + + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + //隐藏Path/mKCP Seed/Quic Key + HideXayPathSeedKey(); + HideVlessVmessXtlsTcpWsXray(); + + //显示域名 + ShowXrayDomainQuicEncrypt(); + + //隐藏伪装网站 + HideXrayMaskSites(); + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //显示复合方案路径 + ShowVlessVmessXtlsTcpWsXray(); + + //显示域名 + ShowXrayDomainQuicEncrypt(); + + //显示伪装网站 + ShowXayMaskSites(); + + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + //隐藏Path/mKCP Seed/Quic Key + HideXayPathSeedKey(); + HideVlessVmessXtlsTcpWsXray(); + + //显示域名 + ShowXrayDomainQuicEncrypt(); + + //显示伪装网站 + ShowXayMaskSites(); + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true + || String.Equals(ReceiveConfigurationParameters[0], "Http2") == true) + { + //显示Path + ShowXayPathSeedKey(); + TextBlockXrayShowPathSeedKey.Text = "Path:"; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + + + //显示域名 + ShowXrayDomainQuicEncrypt(); + + //显示伪装网站(暂时不显示) + HideXrayMaskSites(); + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + //显示Path + ShowXayPathSeedKey(); + TextBlockXrayShowPathSeedKey.Text = "Path:"; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + + //显示域名 + ShowXrayDomainQuicEncrypt(); + + //显示伪装网站 + ShowXayMaskSites(); + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + //显示Path + ShowXayPathSeedKey(); + TextBlockXrayShowPathSeedKey.Text = "Path:"; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + + //隐藏域名/Quic加密方式 + HideXrayDomainQuicEncrypt(); + + //隐藏伪装网站 + HideXrayMaskSites(); + } + else if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + //显示mKCP Seed + ShowXayPathSeedKey(); + TextBlockXrayShowPathSeedKey.Text = "mKCP Seed:"; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + + //隐藏域名/Quic加密方式 + HideXrayDomainQuicEncrypt(); + + //隐藏伪装网站 + HideXrayMaskSites(); + } + else if (ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + //显示QUIC Key + ShowXayPathSeedKey(); + TextBlockXrayShowPathSeedKey.Text = "QUIC Key:"; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Text = ReceiveConfigurationParameters[6]; //mKCP Seed\Quic Key\Path + + //显示Quic加密方式 + ShowXrayDomainQuicEncrypt(); + TextBlockXrayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockQuicEncryption").ToString(); + TextBlockCurrentlySelectedPlanDomainXray.Text = ReceiveConfigurationParameters[3]; //Quic加密方式 + if (String.Equals(TextBlockCurrentlySelectedPlanDomain.Text, "none") == true) + { + HideXayPathSeedKey(); + } + + + //隐藏伪装网站 + HideXrayMaskSites(); + } + } + + #region 当前方案界面控制 + //显示端口与UUID + private void ShowXrayCurrentPortUUID() + { + TextBlockXrayShowPort.Visibility = Visibility.Visible; + TextBlockCurrentlySelectedPlanPortXray.Visibility = Visibility.Visible; + + TextBlockXrayShowUUID.Visibility = Visibility.Visible; + TextBlockCurrentlySelectedPlanUUIDXray.Visibility = Visibility.Visible; + } + + //显示Path/mKCP Seed/Quic Key + private void ShowXayPathSeedKey() + { + HideVlessVmessXtlsTcpWsXray(); + TextBlockXrayShowPathSeedKey.Visibility = Visibility.Visible; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Visibility = Visibility.Visible; + } + + //隐藏Path/mKCP Seed/Quic Key + private void HideXayPathSeedKey() + { + TextBlockXrayShowPathSeedKey.Visibility = Visibility.Hidden; + TextBlockCurrentlySelectedPlanPathSeedKeyXray.Visibility = Visibility.Hidden; + } + + //显示VLESS VMESS XTLS TCP WS 复合方案 + private void ShowVlessVmessXtlsTcpWsXray() + { + HideXayPathSeedKey(); + GridVlessVmessXtlsTcpWsXray.Visibility = Visibility.Visible; + TextBlockBoxPathVlessWSXray.Text = ReceiveConfigurationParameters[3]; + TextBlockBoxPathVmessTcpXray.Text = ReceiveConfigurationParameters[9]; + TextBlockBoxPathVmessWSXray.Text = ReceiveConfigurationParameters[6]; + } + + //隐藏VLESS VMESS XTLS TCP WS 复合方案 + private void HideVlessVmessXtlsTcpWsXray() + { + GridVlessVmessXtlsTcpWsXray.Visibility = Visibility.Collapsed; + } + + //显示域名/Quic加密方式 + private void ShowXrayDomainQuicEncrypt() + { + TextBlockXrayShowCurrentlySelectedPlanDomain.Visibility = Visibility.Visible; + TextBlockCurrentlySelectedPlanDomainXray.Visibility = Visibility.Visible; + TextBlockXrayShowCurrentlySelectedPlanDomain.Text = Application.Current.FindResource("TextBlockV2RayDomain").ToString(); + TextBlockCurrentlySelectedPlanDomainXray.Text = ReceiveConfigurationParameters[4]; //域名 + + } + + //隐藏域名/Quic加密方式 + private void HideXrayDomainQuicEncrypt() + { + TextBlockXrayShowCurrentlySelectedPlanDomain.Visibility = Visibility.Hidden; + TextBlockCurrentlySelectedPlanDomainXray.Visibility = Visibility.Hidden; + } + //显示伪装网站 + private void ShowXayMaskSites() + { + TextBlockXrayShowCurrentlySelectedPlanFakeWebsite.Visibility = Visibility.Visible; + TextBlockCurrentlySelectedPlanFakeWebsiteXray.Visibility = Visibility.Visible; + } + + //隐藏伪装网站 + private void HideXrayMaskSites() + { + TextBlockXrayShowCurrentlySelectedPlanFakeWebsite.Visibility = Visibility.Hidden; + TextBlockCurrentlySelectedPlanFakeWebsiteXray.Visibility = Visibility.Hidden; + } + #endregion + + //传送Xray模板参数,启动Xray安装进程 + private void ButtonXraySetUP_Click(object sender, RoutedEventArgs e) + + { + ConnectionInfo connectionInfo = GenerateConnectionInfo(); + if (connectionInfo == null) + { + //****** "远程主机连接信息有误,请检查!" ****** + MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString()); + return; + } + + + //生成客户端配置时,连接的服务主机的IP或者域名 + if (String.IsNullOrEmpty(ReceiveConfigurationParameters[4]) == true) + { + ReceiveConfigurationParameters[4] = PreTrim(TextBoxHost.Text); + testDomain = false; + } + //选择模板 + if (String.IsNullOrEmpty(ReceiveConfigurationParameters[0]) == true) + { + //******"请先选择配置模板!"****** + MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ChooseTemplate").ToString()); + return; + } + 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") == 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; + + } + + + //Thread thread + //SetUpProgressBarProcessing(0); //重置安装进度 + installationDegree = 0; + TextBoxMonitorCommandResults.Text = ""; + //Thread thread = new Thread(() => StartSetUpXray(connectionInfo, TextBlockSetUpProcessing, ProgressBarSetUpProcessing)); + Thread thread = new Thread(() => StartSetUpXray(connectionInfo)); + + thread.SetApartmentState(ApartmentState.STA); + thread.Start(); + + + } + + //登录远程主机布署Xray程序 + private void StartSetUpXray(ConnectionInfo connectionInfo) + { + functionResult = true; + onlyIpv6 = false; + getApt = false; + getDnf = false; + getYum = false; + + //******"正在登录远程主机......"****** + SetUpProgressBarProcessing(1); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString(); + MainWindowsShowInfo(currentStatus); + + try + { + #region 主机指纹,暂未启用 + //byte[] expectedFingerPrint = new byte[] { + // 0x66, 0x31, 0xaf, 0x00, 0x54, 0xb9, 0x87, 0x31, + // 0xff, 0x58, 0x1c, 0x31, 0xb1, 0xa2, 0x4c, 0x6b + // }; + #endregion + using (var client = new SshClient(connectionInfo)) + { + #region ssh登录验证主机指纹代码块,暂未启用 + // client.HostKeyReceived += (sender, e) => + // { + // if (expectedFingerPrint.Length == e.FingerPrint.Length) + // { + // for (var i = 0; i < expectedFingerPrint.Length; i++) + // { + // if (expectedFingerPrint[i] != e.FingerPrint[i]) + // { + // e.CanTrust = false; + // break; + // } + // } + // } + // else + // { + // e.CanTrust = false; + // } + // }; + #endregion + + client.Connect(); + if (client.IsConnected == true) + { + //******"主机登录成功"****** + SetUpProgressBarProcessing(3); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString(); + MainWindowsShowInfo(currentStatus); + //Thread.Sleep(3000); + } + + //检测root权限 5--7 + functionResult = RootAuthorityDetect(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //检测是否已安装代理 8--10 + functionResult = SoftInstalledIsNoYes(client, "xray", @"/usr/local/bin/xray"); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //检测系统是否符合安装要求 11--30 + //检测关闭Selinux及系统组件是否齐全(apt-get/yum/dnf/systemctl) + //安装依赖软件,检测端口,防火墙开启端口 + functionResult = ShutDownSelinuxAndSysComponentsDetect(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //检测校对时间 31--33 + functionResult = CheckProofreadingTime(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //检测域名解析是否正确 34---36 + if (testDomain == true) + { + functionResult = DomainResolutionCurrentIPDetect(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + } + + //下载安装脚本安装 37--40 + //functionResult = ProxySoftInstall(client, @"Xray", @"https://raw.githubusercontent.com/v2fly/fhs-install-Xray/master/install-release.sh"); + functionResult = ProxySoftInstall(client, @"Xray", @"https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh"); + + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + //functionResult = XrayInstallScript(client); + //if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //程序是否安装成功检测 41--43 + functionResult = SoftInstalledSuccessOrFail(client, "xray", @"/usr/local/bin/xray"); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //生成服务端配置 44--46 + functionResult = GenerateServerConfigurationXray(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //****** "上传配置文件......" ****** 47--50 + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadSoftConfig").ToString(); + MainWindowsShowInfo(currentStatus); + string serverRemoteConfig = @"/usr/local/etc/xray/config.json"; + UploadConfig(connectionInfo, @"config.json", serverRemoteConfig); + File.Delete(@"config.json"); + SetUpProgressBarProcessing(50); + + //如果使用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], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //安装acme.sh与申请证书 51--57 + functionResult = AcmeShInstall(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //安装证书到Xray 58--60 + functionResult = CertInstallToXray(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + } + + + #region Caddy安装 61--70 + + //如果是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], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //安装Caddy 61--66 + functionResult = CaddyInstall(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + + #region 上传Caddy配置文件 67--70 + + //******"上传Caddy配置文件"****** + SetUpProgressBarProcessing(67); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfig").ToString(); + MainWindowsShowInfo(currentStatus); + + string serverConfig = ""; + sshShellCommand = @"mv /etc/caddy/Caddyfile /etc/caddy/Caddyfile.bak"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + serverConfig = $"{pwdir}" + @"TemplateConfg\xray\caddy\vlessTcpTlsWeb.caddyfile"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + serverConfig = $"{pwdir}" + @"TemplateConfg\xray\caddy\WebSocketTLSWeb.caddyfile"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) + { + serverConfig = $"{pwdir}" + @"TemplateConfg\xray\caddy\Http2Web.caddyfile"; + } + + string upLoadPath = "/etc/caddy/Caddyfile"; + client.RunCommand("mv /etc/caddy/Caddyfile /etc/caddy/Caddyfile.bak"); + UploadConfig(connectionInfo, serverConfig, upLoadPath); + + functionResult = FileCheckExists(client, @"/etc/caddy/Caddyfile"); + if (functionResult == false) + { + //****** "Caddy配置文件上传失败!" ******32 + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigFailed").ToString(); + MainWindowsShowInfo(currentStatus); + FunctionResultErr(); + client.Disconnect(); + return; + } + + //****** "Caddy配置文件上传成功,OK!" ******32 + SetUpProgressBarProcessing(70); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigOK").ToString(); + MainWindowsShowInfo(currentStatus); + + //设置Caddy配置文件 + functionResult = SetCaddyfile(client, upLoadPath); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + + #endregion + + //启动Caddy服务 + functionResult = SoftStartDetect(client, "caddy", @"/usr/bin/caddy"); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + } + #endregion + + //****** "正在启动Xray......" ******35 + functionResult = SoftStartDetect(client, "xray", @"/usr/local/bin/xray"); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + //测试BBR条件,若满足提示是否启用 + functionResult = DetectBBRandEnable(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + client.Disconnect();//断开服务器ssh连接 + + //生成客户端配置 96--98 + functionResult = GenerateClientConfigurationXray(); + + //****** "Xray安装成功,祝你玩的愉快!!" ******40 + SetUpProgressBarProcessing(100); + currentStatus = "Xray" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString(); + MainWindowsShowInfo(currentStatus); + + Thread.Sleep(1000); + + //显示服务端连接参数 + proxyType = "Xray"; + ResultClientInformation resultClientInformation = new ResultClientInformation(); + resultClientInformation.ShowDialog(); + + return; + + } + } + catch (Exception ex1)//例外处理 + { + ProcessException(ex1.Message); + + //****** "安装失败!" ****** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginFailed").ToString(); + MainWindowsShowInfo(currentStatus); + } + } + + #region Xray专用调用函数 + //安装代理程序 37--40 + //functionResult = ProxySoftInstall(client,@"",@""); + //if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + /* private bool ProxySoftInstallV2ray(SshClient client, string proxyName, string downloadUrl) + { + //****** "系统环境检测完毕,符合安装要求,开始布署......" ****** + SetUpProgressBarProcessing(37); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstalling").ToString(); + MainWindowsShowInfo(currentStatus); + + //****** "正在安装{proxyName}......" ****** + SetUpProgressBarProcessing(38); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstallSoft").ToString() + $"{proxyName}......"; + MainWindowsShowInfo(currentStatus); + + saveShellScriptFileName = GenerateRandomScriptFileName(GenerateRandomStr(10)); + + sshShellCommand = $"curl -o {saveShellScriptFileName} {downloadUrl}"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + functionResult = FileCheckExists(client, $"{saveShellScriptFileName}"); + if (functionResult == false) + { + //***文件下载失败!*** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_DownloadScriptFailed").ToString(); + MainWindowsShowInfo(currentStatus); + return false; + + } + sshShellCommand = $"yes | bash {saveShellScriptFileName} --version v4.32.1"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = $"rm -f {saveShellScriptFileName}"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + SetUpProgressBarProcessing(40); + return true; + } */ + + + //生成Xray服务端配置 44--46 + //functionResult = GenerateServerConfiguration(client); + //if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + private bool GenerateServerConfigurationXray(SshClient client) + { + SetUpProgressBarProcessing(44); + //修改xray.service + + sshShellCommand = $"sed -i 's/User=nobody/User=root/g' /etc/systemd/system/xray.service"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = $"sed -i 's/CapabilityBoundingSet=/#CapabilityBoundingSet=/g' /etc/systemd/system/xray.service"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = $"sed -i 's/AmbientCapabilities=/#AmbientCapabilities=/g' /etc/systemd/system/xray.service"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = $"systemctl daemon-reload"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + //备用下载地址:https://raw.githubusercontent.com/proxysu/Resources/master/xray/xray.service + + //sshShellCommand = $"yes | curl -o /etc/systemd/system/xray.service https://raw.githubusercontent.com/proxysu/Resources/master/xray/xray.service"; + //currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + //备份原来的文件 + //functionResult = FileCheckExists(client, @"/usr/local/etc/xray/config.json"); + //if (functionResult == true) + //{ + + sshShellCommand = @"mv /usr/local/etc/xray/config.json /usr/local/etc/xray/config.json.1"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + //} + //读取配置文件各个模块 + string logConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\00_log\00_log.json"; + string apiConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\01_api\01_api.json"; + string dnsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\02_dns\02_dns.json"; + string routingConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\03_routing\03_routing.json"; + string policyConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\04_policy\04_policy.json"; + string inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\05_inbounds.json"; + string outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\06_outbounds\06_outbounds.json"; + string transportConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\07_transport\07_transport.json"; + string statsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\08_stats\08_stats.json"; + string reverseConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\09_reverse\09_reverse.json"; + string baseConfigJson = $"{pwdir}" + @"TemplateConfg\xray\base.json"; + + //配置文件模块合成 + using (StreamReader reader = File.OpenText(baseConfigJson)) + { + JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader)); + //读取"log" + using (StreamReader readerJson = File.OpenText(logConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["log"] = jObjectJson["log"]; + } + //读取"api" + using (StreamReader readerJson = File.OpenText(apiConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["api"] = jObjectJson["api"]; + } + //读取"dns" + using (StreamReader readerJson = File.OpenText(dnsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["dns"] = jObjectJson["dns"]; + } + //读取"routing" + using (StreamReader readerJson = File.OpenText(routingConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["routing"] = jObjectJson["routing"]; + } + //读取"policy" + using (StreamReader readerJson = File.OpenText(policyConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["policy"] = jObjectJson["policy"]; + } + //读取"inbounds" + using (StreamReader readerJson = File.OpenText(inboundsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["inbounds"] = jObjectJson["inbounds"]; + } + //读取"outbounds" + using (StreamReader readerJson = File.OpenText(outboundsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["outbounds"] = jObjectJson["outbounds"]; + } + //读取"transport" + using (StreamReader readerJson = File.OpenText(transportConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["transport"] = jObjectJson["transport"]; + } + //读取"stats" + using (StreamReader readerJson = File.OpenText(statsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["stats"] = jObjectJson["stats"]; + } + //读取"reverse" + using (StreamReader readerJson = File.OpenText(reverseConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + serverJson["reverse"] = jObjectJson["reverse"]; + } + + //依据安装模式读取相应模板 + if (String.Equals(ReceiveConfigurationParameters[0], "TCP") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\tcp_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\tcp_http_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\tcp_TLS_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\tcpTLSselfSigned_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_tcp_xtls_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_tcp_tls_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_ws_tls_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_http2_tls_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_vmess_xtls_tcp_websocket_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\webSocket_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\WebSocket_TLS_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\WebSocketTLS_selfSigned_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\WebSocketTLSWeb_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\http2_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\Http2Web_server_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\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") == true) + { + if (mKCPvlessIsSet == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\vless_mkcp_server_config.json"; + } + else + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\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") == true) + { + inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\quic_server_config.json"; + } + + //读取"inbounds" + using (StreamReader readerJson = File.OpenText(inboundsConfigJson)) + { + JObject jObjectJsonTmp = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + var jObjectJson = (dynamic)jObjectJsonTmp; + + //Padavan路由固件服务端设置(因为客户端分流有问题所以在服务端弥补)加上后会影响一定的速度 + + //string sniffingAddServer = $"{pwdir}" + @"TemplateConfg\xray\server\05_inbounds\00_padavan_router.json"; + //using (StreamReader readerSniffingJson = File.OpenText(sniffingAddServer)) + //{ + // JObject jObjectSniffingJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerSniffingJson)); + // jObjectJson["inbounds"][0]["sniffing"] = jObjectSniffingJson["sniffing"]; + //} + + //设置uuid + jObjectJson["inbounds"][0]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + + //除WebSocketTLSWeb/http2Web/VLESS+WebSocket+TLS+Web/VLESS+http2+TLS+Web模式外设置监听端口 + if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == false + && String.Equals(ReceiveConfigurationParameters[0], "http2Web") == false + && String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == false + && String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == false) + { + jObjectJson["inbounds"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + } + + //设置VLESS协议的回落端口,指向Caddy + if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + //设置Caddy随机监听的端口 + randomCaddyListenPort = GetRandomPort(); + + //指向Caddy监听的随机端口 + jObjectJson["inbounds"][0]["settings"]["fallbacks"][0]["dest"] = randomCaddyListenPort; + } + //设置VLESS+VMESS+Trojan+XTLS+TCP+WebSocket+Web协议 + if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == true) + { + //设置Caddy随机监听的端口 + randomCaddyListenPort = GetRandomPort(); + + //指向Caddy监听的随机端口 + jObjectJson["inbounds"][1]["settings"]["fallbacks"][0]["dest"] = randomCaddyListenPort; + //设置其他模式的UUID + jObjectJson["inbounds"][1]["settings"]["clients"][0]["password"] = ReceiveConfigurationParameters[2]; + jObjectJson["inbounds"][2]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["inbounds"][3]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2]; + jObjectJson["inbounds"][4]["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"][2]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3]; + //设置Vmess tcp Path + jObjectJson["inbounds"][3]["streamSettings"]["tcpSettings"]["header"]["request"]["path"][0] = ReceiveConfigurationParameters[9]; + //设置Vmess ws Path + jObjectJson["inbounds"][4]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[6]; + + } + + //TLS自签证书/WebSocketTLS(自签证书)/http2自签证书模式下,使用v2ctl 生成自签证书 + if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true + || String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + string selfSignedCa = client.RunCommand("/usr/local/bin/v2ctl cert --ca").Result; + JObject selfSignedCaJObject = JObject.Parse(selfSignedCa); + jObjectJson["inbounds"][0]["streamSettings"]["tlsSettings"]["certificates"][0] = selfSignedCaJObject; + } + + //如果是WebSocketTLSWeb/WebSocketTLS/WebSocketTLS(自签证书)/VLESS+WebSocket+TLS+Web模式,则设置路径 + 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["inbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[6]; + } + + //如果是Http2/http2Web/http2自签/VLESS+http2+TLS+Web模式下,设置路径 + 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["inbounds"][0]["streamSettings"]["httpSettings"]["path"] = ReceiveConfigurationParameters[6]; + } + + //如果是Http2+Web/VLESS+http2+TLS+Web模式下,设置host + if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true + || String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + jObjectJson["inbounds"][0]["streamSettings"]["httpSettings"]["host"][0] = ReceiveConfigurationParameters[4]; + } + + //mkcp模式下,设置伪装类型 + if (ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + jObjectJson["inbounds"][0]["streamSettings"]["kcpSettings"]["header"]["type"] = ReceiveConfigurationParameters[5]; + if (String.IsNullOrEmpty(ReceiveConfigurationParameters[6]) == false) + { + jObjectJson["inbounds"][0]["streamSettings"]["kcpSettings"]["seed"] = ReceiveConfigurationParameters[6]; + } + } + + //quic模式下设置伪装类型及密钥 + if (ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + jObjectJson["inbounds"][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["inbounds"][0]["streamSettings"]["quicSettings"]["key"] = ReceiveConfigurationParameters[6]; + } + + serverJson["inbounds"] = jObjectJson["inbounds"]; + } + + using (StreamWriter sw = new StreamWriter(@"config.json")) + { + sw.Write(serverJson.ToString()); + } + } + SetUpProgressBarProcessing(46); + return true; + } + + //安装证书到Xray 58--60 + //functionResult = CertInstallToXray(client); + //if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + private bool CertInstallToXray(SshClient client) + { + //****** "安装证书到Xray......" ******26 + SetUpProgressBarProcessing(58); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoft").ToString() + "Xray......"; + MainWindowsShowInfo(currentStatus); + + sshShellCommand = @"mkdir -p /usr/local/etc/xray/ssl"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = $"/root/.acme.sh/acme.sh --installcert -d {ReceiveConfigurationParameters[4]} --certpath /usr/local/etc/xray/ssl/xray_ssl.crt --keypath /usr/local/etc/xray/ssl/xray_ssl.key --capath /usr/local/etc/xray/ssl/xray_ssl.crt --reloadcmd \"systemctl restart xray\""; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + sshShellCommand = @"if [ ! -f ""/usr/local/etc/xray/ssl/xray_ssl.key"" ]; then echo ""0""; else echo ""1""; fi | head -n 1"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + if (currentShellCommandResult.Contains("1") == true) + { + //****** "证书成功安装到Xray!" ******27 + SetUpProgressBarProcessing(60); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftOK").ToString() + "Xray!"; + MainWindowsShowInfo(currentStatus); + } + else + { + //****** "证书安装到Xray失败,原因未知,可以向开发者提问!" ****** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftFail").ToString() + + "Xray" + + Application.Current.FindResource("DisplayInstallInfo_InstallCertFailAsk").ToString(); + MainWindowsShowInfo(currentStatus); + return false; + } + + //设置私钥权限 + sshShellCommand = @"chmod 644 /usr/local/etc/xray/ssl/xray_ssl.key"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + return true; + } + + //生成Xray客户端配置 96--98 + //functionResult = GenerateClientConfiguration(); + //if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + private bool GenerateClientConfigurationXray() + { + //****** "生成客户端配置......" ******39 + SetUpProgressBarProcessing(96); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateClientConfig").ToString(); + MainWindowsShowInfo(currentStatus); + + string logConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\00_log\00_log.json"; + string apiConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\01_api\01_api.json"; + string dnsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\02_dns\02_dns.json"; + string routingConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\03_routing\03_routing.json"; + string policyConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\04_policy\04_policy.json"; + string inboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\05_inbounds\05_inbounds.json"; + string outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\06_outbounds.json"; + string transportConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\07_transport\07_transport.json"; + string statsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\08_stats\08_stats.json"; + string reverseConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\09_reverse\09_reverse.json"; + string baseConfigJson = $"{pwdir}" + @"TemplateConfg\xray\base.json"; + //Thread.Sleep(1000); + if (!Directory.Exists("xray_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory("xray_config");//创建该文件夹   + } + + using (StreamReader reader = File.OpenText(baseConfigJson)) + { + JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader)); + //读取"log" + using (StreamReader readerJson = File.OpenText(logConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["log"] = jObjectJson["log"]; + } + //读取"api" + using (StreamReader readerJson = File.OpenText(apiConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["api"] = jObjectJson["api"]; + } + //读取"dns" + using (StreamReader readerJson = File.OpenText(dnsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["dns"] = jObjectJson["dns"]; + } + //读取"routing" + using (StreamReader readerJson = File.OpenText(routingConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["routing"] = jObjectJson["routing"]; + } + //读取"policy" + using (StreamReader readerJson = File.OpenText(policyConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["policy"] = jObjectJson["policy"]; + } + //读取"inbounds" + using (StreamReader readerJson = File.OpenText(inboundsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["inbounds"] = jObjectJson["inbounds"]; + } + //读取"outbounds" + using (StreamReader readerJson = File.OpenText(outboundsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["outbounds"] = jObjectJson["outbounds"]; + } + //读取"transport" + using (StreamReader readerJson = File.OpenText(transportConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["transport"] = jObjectJson["transport"]; + } + //读取"stats" + using (StreamReader readerJson = File.OpenText(statsConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["stats"] = jObjectJson["stats"]; + } + //读取"reverse" + using (StreamReader readerJson = File.OpenText(reverseConfigJson)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + clientJson["reverse"] = jObjectJson["reverse"]; + } + + //根据不同的安装方案,选择相应的客户端模板 + if (String.Equals(ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == false) + { + #region 单模式方案 + //根据选择的不同模式,选择相应的配置文件 + if (String.Equals(ReceiveConfigurationParameters[0], "TCP") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\tcp_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "TCPhttp") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\tcp_http_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\tcp_TLS_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\tcpTLSselfSigned_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_tcp_xtls_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_tcp_tls_caddy_cilent_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_ws_tls_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_http2_tls_server_config.json"; + } + + else if (String.Equals(ReceiveConfigurationParameters[0], "webSocket") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\webSocket_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\WebSocket_TLS_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\WebSocketTLS_selfSigned_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\WebSocketTLSWeb_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "Http2") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\http2_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2Web") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\Http2Web_client_config.json"; + } + else if (String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\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) + { + if (mKCPvlessIsSet == true) + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_mkcp_client_config.json"; + } + else + { + outboundsConfigJson = $"{pwdir}" + @"TemplateConfg\xray\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 = $"{pwdir}" + @"TemplateConfg\xray\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["outbounds"][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(@"xray_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + + #endregion + + } + else + { + //复合方案所需要的配置文件 + //VLESS over TCP with XTLS模式 + string outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_tcp_xtls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + 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(@"xray_config\vless_tcp_xtls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\vless_tcp_xtls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\vless_tcp_xtls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VLESS over TCP with TLS模式 + outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_tcp_tls_caddy_cilent_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + 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(@"xray_config\vless_tcp_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\vless_tcp_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\vless_tcp_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VLESS over WS with TLS 模式 + outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vless_ws_tls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + 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(@"xray_config\vless_ws_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\vless_ws_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\vless_ws_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VMess over TCP with TLS模式 + outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\vmess_tcp_tls_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + 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(@"xray_config\vmess_tcp_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\vmess_tcp_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\vmess_tcp_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //VMess over WS with TLS模式 + outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\WebSocketTLSWeb_client_config.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + 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]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"xray_config\vmess_ws_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\vmess_ws_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\vmess_ws_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + //Trojan over TCP with TLS模式 + outboundsConfigJsons = $"{pwdir}" + @"TemplateConfg\xray\client\06_outbounds\trojan_tcp_tls.json"; + using (StreamReader readerJson = File.OpenText(outboundsConfigJsons)) + { + JObject jObjectJson = (JObject)JToken.ReadFrom(new JsonTextReader(readerJson)); + + //设置客户端的地址/端口/id + jObjectJson["outbounds"][0]["settings"]["servers"][0]["address"] = ReceiveConfigurationParameters[4]; + jObjectJson["outbounds"][0]["settings"]["servers"][0]["port"] = int.Parse(ReceiveConfigurationParameters[1]); + jObjectJson["outbounds"][0]["settings"]["servers"][0]["password"] = ReceiveConfigurationParameters[2]; + jObjectJson["outbounds"][0]["streamSettings"]["tlsSettings"]["serverName"] = ReceiveConfigurationParameters[4]; + + clientJson["outbounds"] = jObjectJson["outbounds"]; + if (!Directory.Exists(@"xray_config\trojan_tcp_tls_client_config"))//如果不存在就创建file文件夹      + { + Directory.CreateDirectory(@"xray_config\trojan_tcp_tls_client_config");//创建该文件夹   + } + using (StreamWriter sw = new StreamWriter(@"xray_config\trojan_tcp_tls_client_config\config.json")) + { + sw.Write(clientJson.ToString()); + } + } + + } + } + SetUpProgressBarProcessing(98); + return true; + } + + + #endregion + + //检测升级远程主机端的Xray版本 + private void ButtonUpdateXray_Click(object sender, RoutedEventArgs e) + { + ConnectionInfo connectionInfo = GenerateConnectionInfo(); + if (connectionInfo == null) + { + //****** "远程主机连接信息有误,请检查!" ****** + MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString()); + return; + } + installationDegree = 0; + TextBoxMonitorCommandResults.Text = ""; + Thread thread = new Thread(() => UpdateXray(connectionInfo)); + thread.SetApartmentState(ApartmentState.STA); + thread.Start(); + } + + //升级Xray主程序 + private void UpdateXray(ConnectionInfo connectionInfo) + { + functionResult = true; + onlyIpv6 = false; + getApt = false; + getDnf = false; + getYum = false; + + //******"正在登录远程主机......"****** + SetUpProgressBarProcessing(1); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString(); + MainWindowsShowInfo(currentStatus); + + try + { + #region 主机指纹,暂未启用 + //byte[] expectedFingerPrint = new byte[] { + // 0x66, 0x31, 0xaf, 0x00, 0x54, 0xb9, 0x87, 0x31, + // 0xff, 0x58, 0x1c, 0x31, 0xb1, 0xa2, 0x4c, 0x6b + // }; + #endregion + using (var client = new SshClient(connectionInfo)) + + { + #region ssh登录验证主机指纹代码块,暂未启用 + // client.HostKeyReceived += (sender, e) => + // { + // if (expectedFingerPrint.Length == e.FingerPrint.Length) + // { + // for (var i = 0; i < expectedFingerPrint.Length; i++) + // { + // if (expectedFingerPrint[i] != e.FingerPrint[i]) + // { + // e.CanTrust = false; + // break; + // } + // } + // } + // else + // { + // e.CanTrust = false; + // } + // }; + #endregion + + client.Connect(); + if (client.IsConnected == true) + { + //******"主机登录成功"****** + SetUpProgressBarProcessing(3); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString(); + MainWindowsShowInfo(currentStatus); + } + + //检测root权限 5--7 + functionResult = RootAuthorityDetect(client); + if (functionResult == false) { FunctionResultErr(); client.Disconnect(); return; } + + + //******"检测系统是否已经安装Xray......"****** + SetUpProgressBarProcessing(20); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "Xray......"; + MainWindowsShowInfo(currentStatus); + + //Thread.Sleep(1000); + //检测是否安装Xray + //sshShellCommand = @"find / -name xray"; + //sshShellCommand = @"if [[ -f /usr/local/bin/xray ]];then echo '1';else echo '0'; fi"; + //currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + //if (currentShellCommandResult.Contains("/usr/local/bin/xray") == false) + //if (currentShellCommandResult.Trim().Equals("0") == true) + functionResult = FileCheckExists(client, @"/usr/local/bin/xray"); + if (functionResult == false) + { + //******"退出!原因:远程主机未安装Xray"****** + currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Xray!"; + MainWindowsShowInfo(currentStatus); + MessageBox.Show(currentStatus); + + client.Disconnect(); + return; + + } + + //sshcmd = @"/usr/local/bin/xray -version | head -n 1 | cut -d "" "" -f2"; + sshShellCommand = @"/usr/local/bin/xray -version | head -n 1 | cut -d "" "" -f2"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + string xrayCurrentVersion = currentShellCommandResult;//不含字母v + + //sshcmd = @"curl -H ""Accept: application/json"" -H ""User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0"" -s ""https://api.github.com/repos/v2fly/xray-core/releases/latest"" --connect-timeout 10| grep 'tag_name' | cut -d\"" -f4"; + sshShellCommand = @"curl -H ""Accept: application/json"" -H ""User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0"" -sS ""https://api.github.com/repos/XTLS/Xray-core/releases/latest"" --connect-timeout 10 | grep 'tag_name' | cut -d\"" -f4"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + string xrayNewVersion = currentShellCommandResult;//包含字母v + + if (xrayNewVersion.Contains(xrayCurrentVersion) == false) + { + MessageBoxResult messageBoxResult = MessageBox.Show( + //****** "远程主机当前版本为:v" ****** + Application.Current.FindResource("DisplayInstallInfo_CurrentVersion").ToString() + + $"{xrayCurrentVersion}\n" + + //****** "最新版本为:" ****** + Application.Current.FindResource("DisplayInstallInfo_NewVersion").ToString() + + $"{xrayNewVersion}\n" + + //****** "是否升级为最新版本?" ****** + Application.Current.FindResource("DisplayInstallInfo_IsOrNoUpgradeNewVersion").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question); + if (messageBoxResult == MessageBoxResult.Yes) + { + //****** "正在升级到最新版本......" ****** + SetUpProgressBarProcessing(60); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartUpgradeNewVersion").ToString(); + MainWindowsShowInfo(currentStatus); + + //client.RunCommand(@"bash <(curl -L -s https://raw.githubusercontent.com/v2fly/fhs-install-xray/master/install-release.sh)"); + sshShellCommand = $"bash <(curl -L -s https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh)"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + SetUpProgressBarProcessing(80); + //sshcmd = @"/usr/local/bin/xray -version | head -n 1 | cut -d "" "" -f2"; + sshShellCommand = @"/usr/local/bin/xray -version | head -n 1 | cut -d "" "" -f2"; + currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand); + + xrayCurrentVersion = currentShellCommandResult;//不含字母v + if (xrayNewVersion.Contains(xrayCurrentVersion) == true) + { + //****** "升级成功!当前已是最新版本!" ****** + SetUpProgressBarProcessing(100); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionOK").ToString(); + MainWindowsShowInfo(currentStatus); + MessageBox.Show(currentStatus); + } + else + { + //****** "升级失败,原因未知,请向开发者提问!" ****** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionFail").ToString(); + MainWindowsShowInfo(currentStatus); + MessageBox.Show(currentStatus); + } + } + else + { + //****** "升级取消,退出!" ****** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeVersionCancel").ToString(); + MainWindowsShowInfo(currentStatus); + + client.Disconnect(); + return; + } + } + else + { + //****** "远程主机当前已是最新版本:" ****** + SetUpProgressBarProcessing(100); + currentStatus = Application.Current.FindResource("DisplayInstallInfo_IsNewVersion").ToString() + + $"{xrayNewVersion}\n" + + //****** "无需升级!退出!" ****** + Application.Current.FindResource("DisplayInstallInfo_NotUpgradeVersion").ToString(); + MessageBox.Show(currentStatus); + MainWindowsShowInfo(currentStatus); + } + + client.Disconnect(); + return; + } + } + catch (Exception ex1)//例外处理 + #region 例外处理 + { + ProcessException(ex1.Message); + + //****** "主机登录失败!" ****** + currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginFailed").ToString(); + MainWindowsShowInfo(currentStatus); + } + #endregion + + } + + #endregion + #region Trojan-go相关 //打开设置TrojanGo参数窗口 @@ -2855,12 +4425,10 @@ namespace ProxySU functionResult = FileCheckExists(client, @"/usr/local/bin/trojan-go"); if (functionResult == false) { - //******"退出!原因:远程主机未安装Trojan-go"****** - MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan-go!"); //******"退出!原因:远程主机未安装Trojan-go"****** currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan-go!"; MainWindowsShowInfo(currentStatus); - + MessageBox.Show(currentStatus); client.Disconnect(); return; @@ -3413,12 +4981,10 @@ namespace ProxySU functionResult = FileCheckExists(client, @"/usr/local/bin/trojan"); if (functionResult == false) { - //******"退出!原因:远程主机未安装Trojan"****** - MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan!"); //******"退出!原因:远程主机未安装Trojan"****** currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan!"; MainWindowsShowInfo(currentStatus); - + MessageBox.Show(currentStatus); client.Disconnect(); return; @@ -8232,8 +9798,6 @@ namespace ProxySU } } - - SetUpProgressBarProcessing(30); return true; } @@ -8863,12 +10427,13 @@ namespace ProxySU + //生成客户端配置 96--98 #endregion - + } } diff --git a/ProxySU/Properties/AssemblyInfo.cs b/ProxySU/Properties/AssemblyInfo.cs index 5b57888..afe39ff 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.4.25.0")] -[assembly: AssemblyFileVersion("2.4.25.0")] +[assembly: AssemblyVersion("2.5.0.0")] +[assembly: AssemblyFileVersion("2.5.0.0")] diff --git a/ProxySU/ProxySU.csproj b/ProxySU/ProxySU.csproj index 4db557a..1dac41d 100644 --- a/ProxySU/ProxySU.csproj +++ b/ProxySU/ProxySU.csproj @@ -92,6 +92,9 @@ SSpluginWindow.xaml + + XayTemplateWindow.xaml + V2RayTemplateWindow.xaml @@ -134,6 +137,10 @@ Designer MSBuild:Compile + + MSBuild:Compile + Designer + Designer MSBuild:Compile diff --git a/ProxySU/ResultClientInformation.xaml b/ProxySU/ResultClientInformation.xaml index ca916fd..a2d4646 100644 --- a/ProxySU/ResultClientInformation.xaml +++ b/ProxySU/ResultClientInformation.xaml @@ -13,7 +13,7 @@ - + @@ -95,7 +95,7 @@ - + @@ -106,6 +106,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -327,7 +424,7 @@ - + diff --git a/ProxySU/ResultClientInformation.xaml.cs b/ProxySU/ResultClientInformation.xaml.cs index b26162e..019faf6 100644 --- a/ProxySU/ResultClientInformation.xaml.cs +++ b/ProxySU/ResultClientInformation.xaml.cs @@ -367,7 +367,7 @@ namespace ProxySU configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddress.Text); V2raySetVlessTcpXtls(); - GenerateV2rayVlessTcpXtlsShareQRcodeAndBase64Url(); + //GenerateV2rayVlessTcpXtlsShareQRcodeAndBase64Url(); V2raySetVlessTcpTls(); GenerateV2rayVlessTcpTlsShareQRcodeAndBase64Url(); @@ -385,6 +385,339 @@ namespace ProxySU RadioButtonVlessTcpXtls.IsChecked = true; } + } + else if (String.Equals(MainWindow.proxyType, "Xray")) + { + //显示Xray参数,隐藏其他 + GroupBoxClientMTProto.Visibility = Visibility.Collapsed; + GroupBoxClientQRandURL.Visibility = Visibility.Visible; + GroupBoxClientSSpc.Visibility = Visibility.Collapsed; + GroupBoxV2rayClient.Visibility = Visibility.Collapsed; + GroupBoxXrayClient.Visibility = Visibility.Visible; + GroupBoxTrojanGoClient.Visibility = Visibility.Collapsed; + GroupBoxTrojanClient.Visibility = Visibility.Collapsed; + GroupBoxNaiveProxyClient.Visibility = Visibility.Collapsed; + GroupBoxSSRClient.Visibility = Visibility.Collapsed; + GroupBoxClientSS.Visibility = Visibility.Collapsed; + + //主机地址 + TextBoxHostAddressXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + //主机端口 + TextBoxPortXray.Text = MainWindow.ReceiveConfigurationParameters[1]; + //用户ID(uuid)/Trojan密码 + TextBoxUUIDXray.Text = MainWindow.ReceiveConfigurationParameters[2]; + //额外ID + TextBoxUUIDextraXray.Text = "0"; + //加密方式,一般都为auto + TextBoxEncryptionXray.Text = "auto"; + + //传输协议 + TextBoxTransmissionXray.Text = ""; + //伪装类型 + TextBoxCamouflageTypeXray.Text = MainWindow.ReceiveConfigurationParameters[5]; + + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = ""; + + //QUIC密钥/mKCP Seed/路径Path + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[6]; + + //TLS设置 + TextBoxTLSXray.Text = "none"; + + //初始化时,隐藏多方案客户端选择面板 + GroupBoxSelectVlessVmessXtlsTcpWsXray.Visibility = Visibility.Collapsed; + //显示非Trojan的所有参数 + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessVmessXtlsTcpWebSocketWeb") == false) + { + #region 单模式方案 + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCP") == true) + { + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + TextBoxTLSXray.Text = "none"; + ShowHostNameXray(); + ShowPathXray(); + + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "TCPhttp") == true) + { + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "http"; + TextBoxTLSXray.Text = "none"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLS") == true) + { + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true) + { + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessXtlsTcp") == true) + { + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxEncryptionXray.Text = "none"; + TextBoxTLSXray.Text = "xtls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + HideGroupBoxClientQRandURL(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessTcpTlsWeb") == true) + { + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxEncryptionXray.Text = "none"; + TextBoxTLSXray.Text = "tls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + HideGroupBoxClientQRandURL(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessWebSocketTlsWeb") == true) + { + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxEncryptionXray.Text = "none"; + TextBoxTLSXray.Text = "tls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + HideGroupBoxClientQRandURL(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "VlessHttp2Web") == true) + { + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + + TextBoxTransmissionXray.Text = "h2"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxEncryptionXray.Text = "none"; + TextBoxTLSXray.Text = "tls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + HideGroupBoxClientQRandURL(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "webSocket") == true) + { + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + TextBoxTLSXray.Text = "none"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS") == true) + { + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageType.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLS2Web") == true) + { + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "WebSocketTLSselfSigned") == true) + { + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Http2") == true) + { + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "h2"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2Web") == true) + { + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "h2"; + TextBoxCamouflageTypeXray.Text = "none"; + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4];//获取Host + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "http2selfSigned") == true) + { + TextBoxTransmissionXray.Text = "h2"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowHostNameXray(); + ShowPathXray(); + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + if (MainWindow.mKCPvlessIsSet == true) + { + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderV2RayVlessProtocol").ToString(); + TextBoxEncryptionXray.Text = "none"; + HideAlterIdXray(); + HideGroupBoxClientQRandURL(); + } + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPNone") == true) + { + TextBoxCamouflageTypeXray.Text = "none"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2SRTP") == true) + { + TextBoxCamouflageTypeXray.Text = "srtp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCPuTP") == true) + { + TextBoxCamouflageTypeXray.Text = "utp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WechatVideo") == true) + { + TextBoxCamouflageTypeXray.Text = "wechat-video"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2DTLS") == true) + { + TextBoxCamouflageTypeXray.Text = "dtls"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "mKCP2WireGuard") == true) + { + TextBoxCamouflageTypeXray.Text = "wireguard"; + } + + TextBoxTransmissionXray.Text = "kcp"; + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[6];//获取mkcp Seed + TextBoxTLSXray.Text = "none"; + ShowHostNameXray(); + ShowMkcpSeedXray(); + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicNone") == true) + { + TextBoxCamouflageTypeXray.Text = "none"; + + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicSRTP") == true) + { + TextBoxCamouflageTypeXray.Text = "srtp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "Quic2uTP") == true) + { + TextBoxCamouflageTypeXray.Text = "utp"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWechatVideo") == true) + { + TextBoxCamouflageTypeXray.Text = "wechat-video"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicDTLS") == true) + { + TextBoxCamouflageTypeXray.Text = "dtls"; + } + else if (String.Equals(MainWindow.ReceiveConfigurationParameters[0], "QuicWireGuard") == true) + { + TextBoxCamouflageTypeXray.Text = "wireguard"; + } + + TextBoxTransmissionXray.Text = "quic"; + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[3];//获取Quic加密方式 + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[6];//获取Quic加密密钥 + TextBoxTLSXray.Text = "none"; + ShowQuicEncryptionXray(); + ShowQuicKeyXray(); + } + + else + { + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + TextBoxTLSXray.Text = "none"; + ShowHostNameXray(); + ShowPathXray(); + } + CheckDir("xray_config"); + + GenerateXrayShareQRcodeAndBase64Url(); + #endregion + } + else + { + //显示多方案客户端选择面板 + GroupBoxSelectVlessVmessXtlsTcpWsXray.Visibility = Visibility.Visible; + + string proxyfolder = CheckDir("xray_config"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddress.Text); + + XraySetVlessTcpXtls(); + GenerateXrayVlessTcpXtlsShareQRcodeAndBase64Url(); + + XraySetVlessTcpTls(); + GenerateXrayVlessTcpTlsShareQRcodeAndBase64Url(); + + XraySetVlessWsTls(); + GenerateXrayVlessWsTlsShareQRcodeAndBase64Url(); + + XraySetVmessTcpTls(); + GenerateXrayVmessTcpTlsShareQRcodeAndBase64Url(); + + V2raySetVmessWsTls(); + GenerateXrayVmessWsTlsShareQRcodeAndBase64Url(); + + GenerateXrayTrojanShareQRcodeAndBase64Url(); + RadioButtonVlessTcpXtlsXray.IsChecked = true; + } + } else if (String.Equals(MainWindow.proxyType, "TrojanGo")) { @@ -702,6 +1035,8 @@ namespace ProxySU } } + #region V2Ray 相关 + #region V2ray参数设置函数 //设置VLESS over TCP with XTLS @@ -2116,7 +2451,1377 @@ namespace ProxySU #endregion #endregion - + + #endregion + + #region Xray 相关 + + #region Xray参数设置函数 + + //设置VLESS over TCP with XTLS + private void XraySetVlessTcpXtls() + { + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderXrayVlessProtocol").ToString(); + TextBlockVmessOrVlessXray.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "xtls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + TextBoxQuicKeyMkcpSeedPathXray.Text = ""; + + + } + + //设置VLESS over TCP with TLS + private void XraySetVlessTcpTls() + { + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderXrayVlessProtocol").ToString(); + TextBlockVmessOrVlessXray.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + TextBoxQuicKeyMkcpSeedPathXray.Text = ""; + } + + //设置VLESS over WS with TLS + private void XraySetVlessWsTls() + { + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + TextBlockVmessOrVlessXray.Text = Application.Current.FindResource("TabItemHeaderXrayVlessProtocol").ToString(); + TextBlockVmessOrVlessXray.Visibility = Visibility.Visible; + //隐藏下面的二维码显示 + HideGroupBoxClientQRandURL(); + + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + HideAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[3]; + + } + + //设置VMess over TCP with TLS + private void XraySetVmessTcpTls() + { + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "tcp"; + TextBoxCamouflageTypeXray.Text = "http"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[9]; + TextBlockVmessOrVlessXray.Visibility = Visibility.Collapsed; + //显示下面的二维码显示。 + //HideGroupBoxClientQRandURL(); + ShowGroupBoxClientQRandURL(); + TextBoxURL.Text = TextBoxURLVmessTcp; + ImageShareQRcode.Source = ImageShareQRcodeVmessTcp; + } + + //设置VMess over WS with TLS + private void XraySetVmessWsTls() + { + GridNotTrojanParametersXray.Visibility = Visibility.Visible; + TextBoxEncryptionXray.Text = "none"; + TextBoxTransmissionXray.Text = "ws"; + TextBoxCamouflageTypeXray.Text = "none"; + //TLS的Host /Quic 加密方式 + TextBoxHostQuicEncryptionXray.Text = MainWindow.ReceiveConfigurationParameters[4]; + TextBoxTLSXray.Text = "tls"; + ShowAlterIdXray(); + ShowHostNameXray(); + ShowPathXray(); + TextBoxQuicKeyMkcpSeedPathXray.Text = MainWindow.ReceiveConfigurationParameters[6]; + TextBlockVmessOrVlessXray.Visibility = Visibility.Collapsed; + //显示下面的二维码与分享链接 + ShowGroupBoxClientQRandURL(); + TextBoxURL.Text = TextBoxURLVmessWs; + ImageShareQRcode.Source = ImageShareQRcodeVmessWs; + } + + //设置Trojan over TCP with TLS + private void XraySetTrojanTcpTls() + { + //隐藏所有不是Trojan的参数 + GridNotTrojanParametersXray.Visibility = Visibility.Collapsed; + //显示下面的二维码与分享链接 + ShowGroupBoxClientQRandURL(); + TextBoxURL.Text = TextBoxURLTrojanTcp; + ImageShareQRcode.Source = ImageShareQRcodeTrojanTcp; + } + #endregion + + #region 界面控制相关 + + //显示Quic 加密方式 + private void ShowQuicEncryptionXray() + { + TextBlockQuicEncryptionXray.Visibility = Visibility.Visible; + TextBlockHostXray.Visibility = Visibility.Collapsed; + } + + //显示Host隐藏Quic加密方式 + private void ShowHostNameXray() + { + TextBlockHostXray.Visibility = Visibility.Visible; + TextBlockQuicEncryptionXray.Visibility = Visibility.Collapsed; + } + + //显示路径Path,隐藏mKCP/Quic Key/复制按钮 + private void ShowPathXray() + { + TextBlockPathXray.Visibility = Visibility.Visible; + TextBlockMkcpSeedXray.Visibility = Visibility.Collapsed; + TextBlockQuicKeyXray.Visibility = Visibility.Collapsed; + } + + //显示mKCP Seed/复制按钮,隐藏Path/Quic Key + private void ShowMkcpSeedXray() + { + TextBlockPathXray.Visibility = Visibility.Collapsed; + TextBlockMkcpSeedXray.Visibility = Visibility.Visible; + TextBlockQuicKeyXray.Visibility = Visibility.Collapsed; + } + + //显示Quic Key/复制按钮 隐藏Path/mKcp Seed + private void ShowQuicKeyXray() + { + TextBlockPathXray.Visibility = Visibility.Collapsed; + TextBlockMkcpSeedXray.Visibility = Visibility.Collapsed; + TextBlockQuicKeyXray.Visibility = Visibility.Visible; + } + + //显示额外ID + private void ShowAlterIdXray() + { + TextBlockUUIDextraXray.Visibility = Visibility.Visible; + TextBoxUUIDextraXray.Visibility = Visibility.Visible; + TextBlockUUIDextraExplanationXray.Visibility = Visibility.Visible; + + } + + //隐藏额外ID + private void HideAlterIdXray() + { + TextBlockUUIDextraXray.Visibility = Visibility.Collapsed; + TextBoxUUIDextraXray.Visibility = Visibility.Collapsed; + TextBlockUUIDextraExplanationXray.Visibility = Visibility.Collapsed; + + } + + //显示加密方式 + private void ShowEncryptionXray() + { + TextBlockEncryptionXray.Visibility = Visibility.Visible; + TextBoxEncryptionXray.Visibility = Visibility.Visible; + } + //隐藏加密方式 + private void HideEncryptionXray() + { + TextBlockEncryptionXray.Visibility = Visibility.Collapsed; + TextBoxEncryptionXray.Visibility = Visibility.Collapsed; + } + + //显示传输协议 + private void ShowTransferProtocolXray() + { + TextBlockTransferProtocolXray.Visibility = Visibility.Visible; + TextBoxTransmissionXray.Visibility = Visibility.Visible; + } + //隐藏传输协议 + private void HideTransferProtocolXray() + { + TextBlockTransferProtocolXray.Visibility = Visibility.Collapsed; + TextBoxTransmissionXray.Visibility = Visibility.Collapsed; + } + //显示伪装类型 + private void ShowTextBlockCamouflageTypeXray() + { + TextBlockCamouflageTypeXray.Visibility = Visibility.Visible; + TextBoxCamouflageTypeXray.Visibility = Visibility.Visible; + } + //隐藏伪装类型 + private void HideTextBlockCamouflageTypeXray() + { + TextBlockCamouflageTypeXray.Visibility = Visibility.Collapsed; + TextBoxCamouflageTypeXray.Visibility = Visibility.Collapsed; + } + + /* //显示二维码与链接分享 + private void ShowGroupBoxClientQRandURL() + { + GroupBoxClientQRandURL.Visibility = Visibility.Visible; + } + //隐藏二维码与链接分享 + private void HideGroupBoxClientQRandURL() + { + GroupBoxClientQRandURL.Visibility = Visibility.Hidden; + } */ + + //以下几个为对RadioButton按钮的选中后,界面变化与参数显示 + private void RadioButtonVlessTcpXtlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetVlessTcpXtls(); + } + + private void RadioButtonVlessTcpTlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetVlessTcpTls(); + } + + private void RadioButtonVlessWsTlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetVlessWsTls(); + } + + private void RadioButtonVmessTcpTlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetVmessTcpTls(); + } + + private void RadioButtonVmessWsTlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetVmessWsTls(); + } + + private void RadioButtonTrojanTcpTlsXray_Checked(object sender, RoutedEventArgs e) + { + XraySetTrojanTcpTls(); + } + #endregion + + #region 复制参数到剪贴板中 + + /* //复制内容到剪贴板函数 + private void CopyToClipboard(string content) + { + if (content != "") + { + Clipboard.SetDataObject(content); + //MessageBox.Show(Application.Current.FindResource("MessageBoxShow_XrayUUIDcopyedToClip").ToString()); + string message = Application.Current.FindResource("MessageBoxShow_XrayUUIDcopyedToClip").ToString(); + MessageBoxTimeoutA((IntPtr)0, message, "", 0, 0, 600); // 直接调用 0.6秒后自动关闭 + } + else + { + //MessageBox.Show(Application.Current.FindResource("MessageBoxShow_XrayEmptyToClip").ToString()); + string message = Application.Current.FindResource("MessageBoxShow_XrayEmptyToClip").ToString(); + MessageBoxTimeoutA((IntPtr)0, message, "", 0, 0, 600); // 直接调用 0.6秒后自动关闭 + } + } */ + + //复制服务器地址到剪贴板 + private void TextBoxHostAddressXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxHostAddressXray.Text); + } + + + //复制服务器端口到剪贴板 + private void TextBoxPortXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxPortXray.Text); + } + + //复制UUID到剪贴板 + private void TextBoxUUIDXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxUUIDXray.Text); + } + + //复制额外ID到剪贴板 + private void TextBoxUUIDextraXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxUUIDextraXray.Text); + } + + //复制加密方式到剪贴板 + private void TextBoxEncryptionXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxEncryptionXray.Text); + } + + //复制传输协议到剪贴板 + private void TextBoxTransmissionXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTransmissionXray.Text); + } + + //复制伪装方式到剪贴板 + private void TextBoxCamouflageTypeXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxCamouflageTypeXray.Text); + } + + //复制Host/Quic加密方法到剪贴板 + private void TextBoxHostQuicEncryptionXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxHostQuicEncryptionXray.Text); + } + + //复制Quic Key/mKCP Seed/路径Path 到剪贴板中 + private void TextBoxQuicKeyMkcpSeedPathXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxQuicKeyMkcpSeedPathXray.Text); + } + + //复制TLS 到剪贴板中 + private void TextBoxTLSXray_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + CopyToClipboard(TextBoxTLSXray.Text); + } + + #endregion + + #region Xray客户端生成 + //生成单方案v2rayN客户端导入文件 + private void GenerateXrayShareQRcodeAndBase64Url() + { + //生成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"] = TextBoxHostAddressXray.Text; //设置域名 + v2rayNjsonObject["port"] = TextBoxPortXray.Text; //设置端口 + v2rayNjsonObject["id"] = TextBoxUUIDXray.Text; //设置uuid + v2rayNjsonObject["aid"] = TextBoxUUIDextraXray.Text; //设置额外ID + v2rayNjsonObject["net"] = TextBoxTransmissionXray.Text; //设置传输模式 + v2rayNjsonObject["type"] = TextBoxCamouflageTypeXray.Text; //设置伪装类型 + + if (TextBoxTransmissionXray.Text.Contains("kcp") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置mKCP Seed + v2rayNjsonObject["host"] = "";//设置Host + } + else if (TextBoxTransmissionXray.Text.Contains("quic") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置quic密钥 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.Text;//Quic加密方式 + } + else + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text; //设置路径 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.Text;//设置TLS的Host + } + + v2rayNjsonObject["tls"] = TextBoxTLSXray.Text; //设置是否启用TLS + v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注 + //MessageBox.Show(v2rayNjsonObject["v"].ToString()); + //MessageBox.Show("step1"); + string proxyfolder = CheckDir("xray_config"); + //MessageBox.Show("step2"); + configDomainSavePath = CreateConfigSaveDir(proxyfolder, TextBoxHostAddressXray.Text); + //MessageBox.Show("step3"); + string configSavePath = configDomainSavePath; + + //生成二维码与URL,跳过VlessTcpTlsWeb暂时未有URL标准 + string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + TextBoxURL.Text = vmessUrl; + 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 + && MainWindow.mKCPvlessIsSet == false) + { + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + { + sw.WriteLine(vmessUrl); + } + ImageShareQRcode.Source = CreateQRCode(vmessUrl, $"{configSavePath}\\QR.bmp"); + } + + if (File.Exists(@"xray_config\config.json")) + { + File.Move(@"xray_config\config.json", $"{configSavePath}\\config.json"); + //File.Delete(@"config\config.json");//删除该文件 + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + ReadmeTxtWriteGenerateXray(sw); + + } + } + + #region VLESS VMESS XTLS WS共存方案生成链接与说明文件 + + //生成VLESS Vmess Tcp Xtls Ws 配置保存(暂未有分享链接与二维码) + private void GenerateXrayVlessVmessTcpXtlsWsShareQRcodeAndBase64Url(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($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_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("readmeTxtXrayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine06").ToString()); + + //****** "Qv2ray:https://github.com/Qv2ray/Qv2ray/releases" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine11").ToString()); + + //写入通用配置参数 + TxtWriteGeneralParametersXray(sw); + } + } + + + //生成VLESS over TCP with XTLS的配置保存(暂未有分享链接与二维码) + private void GenerateXrayVlessTcpXtlsShareQRcodeAndBase64Url() + { + #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标准 + //TextBoxURLDefault = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = TextBoxURLDefault; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + + // sw.WriteLine(TextBoxURLDefault); + + //} + + // ImageShareQRcodeDefault = CreateQRCode(TextBoxURLDefault, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + // ImageShareQRcode.Source = ImageShareQRcodeDefault; + + + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_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("readmeTxtXrayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine06").ToString()); + + //****** "Qv2ray:https://github.com/Qv2ray/Qv2ray/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParametersXray(sw, false); + + } + } + + //生成VLESS over TCP with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateXrayVlessTcpTlsShareQRcodeAndBase64Url() + { + #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标准 + //TextBoxURLVlessTcp = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = TextBoxURLVlessTcp; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + + // sw.WriteLine(TextBoxURLVlessTcp); + + //} + + // ImageShareQRcodeVlessTcp = CreateQRCode(TextBoxURLVlessTcp, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + // ImageShareQRcode.Source = ImageShareQRcodeVlessTcp; + + + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_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("readmeTxtXrayExplainLine01").ToString()); + + //****** "v2ray官方网站:https://www.v2ray.com/" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine05").ToString()); + + //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine06").ToString()); + + //****** "Qv2ray:https://github.com/Qv2ray/Qv2ray/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine07").ToString()); + + //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine08").ToString()); + + //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine09").ToString()); + + //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine10").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("url.txt"); + + //****** "此文件为v2rayN、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParametersXray(sw, false); + + } + } + + //生成VLESS over WS with TLS的配置保存(暂未有分享链接与二维码) + private void GenerateXrayVlessWsTlsShareQRcodeAndBase64Url() + { + #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标准 + //TextBoxURLVlessWs = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = TextBoxURLVlessWs; + //using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + //{ + + // sw.WriteLine(TextBoxURLVlessWs); + + //} + + // ImageShareQRcodeVlessWs = CreateQRCode(TextBoxURLVlessWs, $"v2ray_config\\{saveFileFolder}\\QR.bmp"); + //ImageShareQRcode.Source = ImageShareQRcodeVlessWs; + + + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + sw.WriteLine("config.json"); + //****** "此文件为Xray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine01").ToString()); + + //****** "Xray官方网站:https://github.com/XTLS/Xray-core" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "Xray官方程序下载地址:https://github.com/XTLS/Xray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择xray-windows-64.zip或者xray-windows-32.zip,解压后提取v2ray.exe。与config.json放在同一目录,运行xray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + //sw.WriteLine("-----------------------------------------"); + //sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN(windows)、Qv2ray(windows)、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()); + + //****** "Qv2ray下载网址:https://github.com/Qv2ray/Qv2ray/releases" ****** + 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、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + //sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine11").ToString()); + + //写入通用配置参数-- + TxtWriteGeneralParametersXray(sw, false); + + } + } + + //生成VMess over TCP with TLS的配置保存 + private void GenerateXrayVmessTcpTlsShareQRcodeAndBase64Url() + { + #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"] = TextBoxHostAddressXray.Text; //设置域名 + v2rayNjsonObject["port"] = TextBoxPortXray.Text; //设置端口 + v2rayNjsonObject["id"] = TextBoxUUIDXray.Text; //设置uuid + v2rayNjsonObject["aid"] = TextBoxUUIDextraXray.Text; //设置额外ID + v2rayNjsonObject["net"] = TextBoxTransmissionXray.Text; //设置传输模式 + v2rayNjsonObject["type"] = TextBoxCamouflageTypeXray.Text; //设置伪装类型 + + if (TextBoxTransmission.Text.Contains("kcp") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置mKCP Seed + v2rayNjsonObject["host"] = "";//设置Host + } + else if (TextBoxTransmission.Text.Contains("quic") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置quic密钥 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.Text;//Quic加密方式 + } + else + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text; //设置路径 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.Text;//设置TLS的Host + } + + v2rayNjsonObject["tls"] = TextBoxTLSXray.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标准 + TextBoxURLVmessTcp = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = TextBoxURLVmessTcp; + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + { + sw.WriteLine(TextBoxURLVmessTcp); + } + + ImageShareQRcodeVmessTcp = CreateQRCode(TextBoxURLVmessTcp, $"{configSavePath}\\QR.bmp"); + //ImageShareQRcode.Source = ImageShareQRcodeVmessTcp; + + + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + ReadmeTxtWriteGenerateXray(sw); + + } + } + + //生成VMess over WS with TLS的配置保存 + private void GenerateXrayVmessWsTlsShareQRcodeAndBase64Url() + { + #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"] = TextBoxHostAddressXray.Text; //设置域名 + v2rayNjsonObject["port"] = TextBoxPortXray.Text; //设置端口 + v2rayNjsonObject["id"] = TextBoxUUIDXray.Text; //设置uuid + v2rayNjsonObject["aid"] = TextBoxUUIDextraXray.Text; //设置额外ID + v2rayNjsonObject["net"] = TextBoxTransmissionXray.Text; //设置传输模式 + v2rayNjsonObject["type"] = TextBoxCamouflageTypeXray.Text; //设置伪装类型 + + if (TextBoxTransmission.Text.Contains("kcp") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置mKCP Seed + } + else if (TextBoxTransmission.Text.Contains("quic") == true) + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text;//设置quic密钥 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.Text;//Quic加密方式 + } + else + { + v2rayNjsonObject["path"] = TextBoxQuicKeyMkcpSeedPathXray.Text; //设置路径 + v2rayNjsonObject["host"] = TextBoxHostQuicEncryptionXray.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, + TextBoxURLVmessWs = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); + //TextBoxURL.Text = TextBoxURLVmessWs; + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + { + + sw.WriteLine(TextBoxURLVmessWs); + + } + + ImageShareQRcodeVmessWs = CreateQRCode(TextBoxURLVmessWs, $"{configSavePath}\\QR.bmp"); + //ImageShareQRcode.Source = ImageShareQRcodeVmessWs; + + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + ReadmeTxtWriteGenerateXray(sw); + + } + } + + //生成Trojan over TCP with TLS的配置保存 + private void GenerateXrayTrojanShareQRcodeAndBase64Url() + { + //创建保存目录 + string plainSavePath = @"trojan_tcp_tls_client_config"; + string configSavePath = CheckDir($"{configDomainSavePath}\\{plainSavePath}"); + + TextBoxURLTrojanTcp = $"trojan://{TextBoxUUIDXray.Text}@{TextBoxHostAddressXray.Text}:{TextBoxPortXray.Text}#{TextBoxHostAddressXray.Text}"; + + //TextBoxURL.Text = TextBoxURLTrojanTcp; + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\url.txt")) + { + sw.WriteLine(TextBoxURLTrojanTcp); + + } + //ImageShareQRcode.Source = CreateQRCode(TextBoxURLTrojanTcp, $"{configSavePath}\\QR.bmp"); + ImageShareQRcodeTrojanTcp = CreateQRCode(TextBoxURLTrojanTcp, $"{configSavePath}\\QR.bmp"); + //ImageShareQRcode.Source = ImageShareQRcodeTrojanTcp; + //移动官方程序配置文件到相应目录 + if (File.Exists($"xray_config\\{plainSavePath}\\config.json")) + { + File.Move($"xray_config\\{plainSavePath}\\config.json", $"{configSavePath}\\config.json"); + Directory.Delete($"xray_config\\{plainSavePath}"); + } + + using (StreamWriter sw = new StreamWriter($"{configSavePath}\\readme.txt")) + { + //ReadmeTxtWriteGenerate(sw); + sw.WriteLine("config.json"); + //****** "此文件为Xray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine01").ToString()); + + //****** "Xray官方网站:https://github.com/XTLS/Xray-core" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "Xray官方程序下载地址:https://github.com/XTLS/Xray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择Xray-windows-64.zip或者Xray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + sw.WriteLine("-----------------------------------------"); + sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN(windows)、Qv2ray(windows)、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()); + + //****** "Qv2ray下载网址:https://github.com/Qv2ray/Qv2ray/releases" ****** + 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、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + sw.WriteLine("-----------------------------------------\n"); + + string strApplicat = ""; + string strParam = ""; + int strLenth = 20; + //****** "服务器通用连接配置参数:" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine12").ToString()); + sw.WriteLine(""); + + strApplicat = "TextBlockServerAddress"; + strParam = TextBoxHostAddressXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockServerPort"; + strParam = TextBoxPortXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockUserUUID"; + strParam = TextBoxUUIDXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + } + + } + + //写入VMESS的readme.txt文件 + private void ReadmeTxtWriteGenerateXray(StreamWriter sw) + { + sw.WriteLine("config.json"); + //****** "此文件为Xray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine01").ToString()); + + //****** "Xray官方网站:https://github.com/XTLS/Xray-core" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine02").ToString()); + + //****** "Xray官方程序下载地址:https://github.com/XTLS/Xray-core/releases" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine03").ToString()); + + //****** "下载相应版本,Windows选择xray-windows-64.zip或者xray-windows-32.zip,解压后提取xray.exe。与config.json放在同一目录,运行xray.exe即可。" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtXrayExplainLine04").ToString()); + + sw.WriteLine("-----------------------------------------"); + sw.WriteLine("QR.bmp"); + + //****** "此文件为v2rayN(windows)、Qv2ray(windows)、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()); + + //****** "Qv2ray下载网址:https://github.com/Qv2ray/Qv2ray/releases" ****** + 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、Qv2ray、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ****** + sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString()); + + //写入通用配置参数 + TxtWriteGeneralParametersXray(sw); + } + //TXT文件中写入通用配置参数--- + private void TxtWriteGeneralParametersXray(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 = TextBoxHostAddressXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockServerPort"; + strParam = TextBoxPortXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockUserUUID"; + strParam = TextBoxUUIDXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + if (alterId == true) + { + strApplicat = "TextBlockXrayAlterId"; + strParam = TextBoxUUIDextraXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + } + + strApplicat = "TextBlockEncryption"; + strParam = TextBoxEncryptionXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockTransferProtocol"; + strParam = TextBoxTransmissionXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockCamouflageType"; + strParam = TextBoxCamouflageTypeXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + strApplicat = "TextBlockIsOrNotTLS"; + strParam = TextBoxTLSXray.Text; + sw.WriteLine(AlignmentStrFunc(Application.Current.FindResource($"{strApplicat}").ToString(), strLenth) + strParam); + + if (MainWindow.ReceiveConfigurationParameters[0].Contains("Quic") == true) + { + strParam = TextBoxHostQuicEncryptionXray.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockQuicEncryptionXray.Text, strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPathXray.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockQuicKeyXray.Text, strLenth) + strParam); + + } + else if (MainWindow.ReceiveConfigurationParameters[0].Contains("mKCP") == true) + { + strParam = TextBoxHostQuicEncryptionXray.Text; + sw.WriteLine(AlignmentStrFunc("host:", strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPathXray.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockMkcpSeedXray.Text, strLenth) + strParam); + + } + else + { + strParam = TextBoxHostQuicEncryptionXray.Text; + sw.WriteLine(AlignmentStrFunc("host:", strLenth) + strParam); + + strParam = TextBoxQuicKeyMkcpSeedPathXray.Text; + sw.WriteLine(AlignmentStrFunc(TextBlockPathXray.Text, strLenth) + strParam); + } + } + #endregion + + #endregion + + #endregion + + #region TrojanGo 相关 //生成TrojanGo客户端资料 private void GenerateTrojanGoShareQRcodeAndBase64Url() { @@ -2456,6 +4161,9 @@ namespace ProxySU #endregion + #endregion + + #region NaiveProxy 相关 //生成NaiveProxy客户端资料 private void GenerateNaivePrxoyShareQRcodeAndBase64Url() { @@ -2572,7 +4280,9 @@ namespace ProxySU #endregion + #endregion + #region SSR相关 //生成SSR客户端资料 private void GenerateSSRShareQRcodeAndBase64Url() { @@ -2940,9 +4650,12 @@ namespace ProxySU { CopyToClipboard(TextBoxURLpcSS.Text); } - + #endregion + #endregion + + #region MTProto 界面控制 private void RadioButtonMtgIpv4_Checked(object sender, RoutedEventArgs e) { diff --git a/ProxySU/Translations/ProxySU.en-US.xaml b/ProxySU/Translations/ProxySU.en-US.xaml index e9251ec..3f2e32e 100644 --- a/ProxySU/Translations/ProxySU.en-US.xaml +++ b/ProxySU/Translations/ProxySU.en-US.xaml @@ -30,6 +30,11 @@ Save Installation Log... Waiting for installation and deployment System Tools + + Xray template library + Xray one-click installation + Upgrade Xay + V2Ray Templates V2ray install Upgrade V2Ray @@ -184,6 +189,7 @@ 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 six solutions at the same time on the server side, sharing the same domain name and port 443, WS can pass through CDN. + 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.(If you want to add XTLS scheme, please use Xray configuration) 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 @@ -336,6 +342,7 @@ Caddy installed successfully! is upgrading the Caddy v2.2.0 beta version for Http2Web mode! Upload Caddy configuration file... + Caddy configuration file upload failed! The Caddy configuration file is uploaded successfully, OK! Starting Caddy... Caddy started successfully! @@ -394,6 +401,11 @@ The upgrade is complete, OK! Optimizing network parameters... Optimize network parameters, OK! + + This file is the client configuration file used by the official Xay program. It is configured in global mode, socks5 address: 127.0.0.1:1080, http proxy address: 127.0.0.1:1081 + Xray official website: https://github.com/XTLS/Xray-core + Xray official program download address: https://github.com/XTLS/Xray-core/releases + Download the corresponding version, select xray-windows-64.zip or xray-windows-32.zip for Windows, extract xray.exe after decompression. Put it in the same directory as config.json, just run xray.exe. This file is the client configuration file used by the official V2Ray program. It is configured in global mode, socks5 address: 127.0.0.1:1080, http proxy address: 127.0.0.1:1081 v2ray official website: https://www.v2ray.com/ diff --git a/ProxySU/Translations/ProxySU.zh-CN.xaml b/ProxySU/Translations/ProxySU.zh-CN.xaml index 486f0fd..335deb1 100644 --- a/ProxySU/Translations/ProxySU.zh-CN.xaml +++ b/ProxySU/Translations/ProxySU.zh-CN.xaml @@ -30,10 +30,16 @@ 安装日志另存为... 等待安装布署 系统工具 + + Xray模板库 + Xray一键安装 + 升级Xay + V2Ray模板库 V2ray一键安装 - 升级V2Ray + 升级V2ray 取消 + Trojan-Go参数设置 Trojan-Go一键安装 升级Trojan-Go @@ -187,6 +193,7 @@ 稳定性强,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。 + VLESS over TCP with XTLS + 回落 and 分流 to WHATEVER(终极配置),由rprx大佬 (xtls作者) 配置并推荐,在服务端同时配置以下五种方案,共用同一域名与443端口,其中 WS 都可以通过 CDN。(想增加XTLS方案请使用Xray配置) TCP+Http伪装 数据加密传输,会被识别为未知的tcp流量 数据加密传输,并做http伪装,会被识别为http流量,但并不是真正的http访问 @@ -341,6 +348,7 @@ Caddy安装成功! 正在为Http2Web模式升级Caddy v2.2.0测试版! 上传Caddy配置文件...... + Caddy配置文件上传失败! Caddy配置文件上传成功,OK! 正在启动Caddy...... Caddy启动成功! @@ -399,11 +407,18 @@ 升级完毕,OK! 正在优化网络参数...... 优化网络参数,OK! + + 此文件为Xay官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 + Xray官方网站:https://github.com/XTLS/Xray-core + Xray官方程序下载地址:https://github.com/XTLS/Xray-core/releases + 下载相应版本,Windows选择xray-windows-64.zip或者xray-windows-32.zip,解压后提取xray.exe。与config.json放在同一目录,运行xray.exe即可。 + 此文件为V2Ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 v2ray官方网站:https://www.v2ray.com/ v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases 下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。 + 此文件为v2rayN(windows)、Qv2ray(windows)、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点 v2rayN下载网址:https://github.com/2dust/v2rayN/releases Qv2ray下载网址:https://github.com/Qv2ray/Qv2ray/releases diff --git a/ProxySU/Translations/ProxySU.zh-TW.xaml b/ProxySU/Translations/ProxySU.zh-TW.xaml index 17634c6..66ecb43 100644 --- a/ProxySU/Translations/ProxySU.zh-TW.xaml +++ b/ProxySU/Translations/ProxySU.zh-TW.xaml @@ -30,6 +30,11 @@ 安裝日誌另存為... 等待安裝佈署 系統工具 + + Xray模板庫 + Xray一鍵安裝 + 升級Xay + V2Ray模板庫 V2ray一鍵安裝 升級V2Ray @@ -184,6 +189,7 @@ 穩定性強,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。 + VLESS over TCP with XTLS + 回落and 分流to WHATEVER(終極配置),由rprx大佬(xtls作者)配置並推薦,在服務端同時配置以下五種方案,共用同一域名與443端口,其中 WS 都可以通過 CDN。(想增加XTLS方案請使用Xray配置) 數據加密傳輸,會被識別為未知的tcp流量 TCP+Http偽裝 數據加密傳輸,並做http偽裝,會被識別為http流量,但並不是真正的http訪問 @@ -336,6 +342,7 @@ Caddy安裝成功! 正在為Http2Web模式升級Caddy v2.2.0測試版! 上傳Caddy配置文件...... + Caddy配置文件上傳失敗! Caddy配置文件上傳成功,OK! 正在啟動Caddy...... Caddy啟動成功! @@ -394,8 +401,12 @@ 升級完畢,OK! 正在優化網絡參數...... 優化網絡參數,OK! + + 此文件為Xay官方程序所使用的客戶端配置文件,配置為全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 + Xray官方網站:https://github.com/XTLS/Xray-core + Xray官方程序下載地址:https://github.com/XTLS/Xray-core/releases + 下載相應版本,Windows選擇xray-windows-64.zip或者xray-windows-32.zip,解壓後提取xray.exe。與config.json放在同一目錄,運行xray.exe即可。 - 此文件為V2Ray官方程序所使用的客戶端配置文件,配置為全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081 v2ray官方網站:https://www.v2ray.com/ v2ray官方程序下載地址:https://github.com/v2ray/v2ray-core/releases diff --git a/ProxySU/V2RayTemplateWindow.xaml b/ProxySU/V2RayTemplateWindow.xaml index 1502837..a3e0577 100644 --- a/ProxySU/V2RayTemplateWindow.xaml +++ b/ProxySU/V2RayTemplateWindow.xaml @@ -93,16 +93,16 @@ - - - - - - - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ProxySU/XayTemplateWindow.xaml.cs b/ProxySU/XayTemplateWindow.xaml.cs new file mode 100644 index 0000000..1079966 --- /dev/null +++ b/ProxySU/XayTemplateWindow.xaml.cs @@ -0,0 +1,1146 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Shapes; +//using System.Windows.Forms; + +namespace ProxySU +{ + /// + /// WindowTemplateConfiguration.xaml 的交互逻辑 + /// + public partial class XrayWindowTemplateConfiguration : Window + { + //QUIC 加密方法 + public class EncryptionMethodInfo + { + public string Name { get; set; } + public string Value { get; set; } + } + + public XrayWindowTemplateConfiguration() + { + InitializeComponent(); + + #region 加密方法选择 初始设置为chacha20-poly1305 + List methodList = new List(); + + methodList.Add(new EncryptionMethodInfo { Name = "chacha20-poly1305", Value = "chacha20-poly1305" }); + methodList.Add(new EncryptionMethodInfo { Name = "aes-128-gcm", Value = "aes-128-gcm" }); + methodList.Add(new EncryptionMethodInfo { Name = "none", Value = "none" }); + + ComboBoxEncryptionMethodInfo.ItemsSource = methodList; + + ComboBoxEncryptionMethodInfo.DisplayMemberPath = "Name";//显示出来的值 + ComboBoxEncryptionMethodInfo.SelectedValuePath = "Value";//实际选中后获取的结果的值 + ComboBoxEncryptionMethodInfo.SelectedIndex = 0; + + DataContext = this; + #endregion + + //隐藏QUIC密钥 + FirstQuicHideEncryption(); + RadioButtonVMESSmKCP.IsChecked = true; + } + //取消不在当前活动选项卡中的其他所有选项卡中的所有RadioBuuton的选中状态 + //代码参考网址:https://blog.csdn.net/weixin_42583999/article/details/103468857 + //调用:UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + private void UncheckLayouts(TabItem activePage) + { + foreach (TabItem tabPage in TabControlTemplate.Items) + { + if (tabPage == activePage) continue; + Grid grid = (Grid)tabPage.Content; + foreach (UIElement element in grid.Children) + { + if (element is RadioButton) + { + RadioButton radiobutton = (element as RadioButton); + radiobutton.IsChecked = false; + } + + } + } + } + + //传递所选择的参数与模板方案 + private void ButtondDecide_Click(object sender, RoutedEventArgs e) + { + bool preDomainMask = ClassModel.PreDomainMask(TextBoxMaskSites.Text); + bool domainNotEmpty = true; + + #region TCP 传输协议(VMESS) + + //TCP模式被选中 + if (RadioButtonTCP.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "TCP"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonTCP.Content.ToString(); + + } + + //TCP+http伪装模式被选中 + else if (RadioButtonTCPhttp.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "TCPhttp"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonTCPhttp.Content.ToString(); + //伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "http"; + + } + + //TCP+TLS模式被选中 + else if (RadioButtonTCP2TLS.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "tcpTLS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonTCP2TLS.Content.ToString(); + + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + //tcp+TLS(自签证书)模式被选中 + else if (RadioButtonTcpTLS2SelfSigned.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "tcpTLSselfSigned"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonTcpTLS2SelfSigned.Content.ToString(); + + //传递域名 + // MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + #endregion + + #region VLESS协议 + + //VLESS+TCP+XTLS+Web模式选中 + else if (RadioButtonVlessXtlsTcp.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "VlessXtlsTcp"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonVlessXtlsTcp.Content.ToString(); + + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + + } + + //VLESS+TCP+TLS+Web模式选中 + else if (RadioButtonVlessTcpTlsWeb.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "VlessTcpTlsWeb"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonVlessTcpTlsWeb.Content.ToString(); + + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + + } + + //VLESS+WebSocket+TLS+Web模式选中 + else if (RadioButtonVlessWebSocketTlsWeb.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "VlessWebSocketTlsWeb"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonVlessWebSocketTlsWeb.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + } + + //VLESS+http2+TLS+Web模式选中 + else if (RadioButtonVlessHttp2Web.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "VlessHttp2Web"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonVlessHttp2Web.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + } + + //VLESS+VMESS+Trojan+XTLS+TCP+WebSocket+Web模式被选中 + else if (RadioButtonVlessVmessXtlsTcpWebSocketHot.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "VlessVmessXtlsTcpWebSocketWeb"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonVlessVmessXtlsTcpWebSocketHot.Content.ToString(); + //传递路径 + MainWindow.ReceiveConfigurationParameters[3] = PreTrim(TextBoxPathVlessWS.Text);//VLESS ws Path + MainWindow.ReceiveConfigurationParameters[9] = PreTrim(TextBoxPathVmessTcp.Text);//VMESS tcp Path + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPathVmessWS.Text);//VMESS ws Path + + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递混淆方式(VMESS TCP Path方式所用) + MainWindow.ReceiveConfigurationParameters[5] = "http"; + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + + } + + #endregion + + #region WebSocket传输协议(VMESS) + + //webSocket模式被选中 + else if (RadioButtonWebSocket.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "webSocket"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocket.Content.ToString(); + + } + + //WebSocket+TLS模式被选中 + else if (RadioButtonWebSocketTLS.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "WebSocketTLS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocketTLS.Content.ToString(); + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + //WebSocket+TLS+Web模式被选中 + else if (RadioButtonWebSocketTLS2Web.IsChecked == true|| RadioButtonWebSocketTLS2WebHot.IsChecked==true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "WebSocketTLS2Web"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocketTLS2Web.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + + } + + //WebSocket+TLS(自签证书)模式被选中 + else if (RadioButtonWebSocketTLSselfSigned.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "WebSocketTLSselfSigned"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonWebSocketTLSselfSigned.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + //MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + #endregion + + #region http2传输协议(VMESS) + + //http2模式被选中 + else if (RadioButtonHTTP2.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "Http2"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonHTTP2.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + //http2+TLS+Web模式被选中 + else if (RadioButtonHTTP2Web.IsChecked == true || RadioButtonHTTP2WebHot.IsChecked == true) + { + domainNotEmpty = ClassModel.TestDomainIsEmpty(TextBoxDomain.Text); + + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "http2Web"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonHTTP2Web.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + //传递伪装网站 + MainWindow.ReceiveConfigurationParameters[7] = ClassModel.DisguiseURLprocessing(PreTrim(TextBoxMaskSites.Text)); + + } + + //http2(自签证书)模式被选中 + else if (RadioButtonHTTP2selfSigned.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "http2selfSigned"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonHTTP2selfSigned.Content.ToString(); + + //传递路径 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxPath.Text); + //传递域名 + //MainWindow.ReceiveConfigurationParameters[4] = PreTrim(TextBoxDomain.Text); + + } + + #endregion + + #region mKCP 传输协议 (VMESS) + + //mKCP无伪装模式被选中 + else if (RadioButtonMkcpNone.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCPNone"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonMkcpNone.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "none"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) ==false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + //mKCP+srtp伪装模式被选中 + else if (RadioButton2mKCP2SRTP.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCP2SRTP"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButton2mKCP2SRTP.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "srtp"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) == false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + //mKCP+utp伪装模式被选中 + else if (RadioButton2mKCPuTP.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCPuTP"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButton2mKCPuTP.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "utp"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) == false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + //mKCP+wechat-video伪装模式被选中 + else if (RadioButton2mKCP2WechatVideo.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCP2WechatVideo"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButton2mKCP2WechatVideo.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "wechat-video"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) == false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + //mKCP+dtls伪装模式被选中 + else if (RadioButton2mKCP2DTLS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCP2DTLS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButton2mKCP2DTLS.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "dtls"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) == false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + //mKCP+wireguard伪装模式被选中 + else if (RadioButton2mKCP2WireGuard.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "mKCP2WireGuard"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButton2mKCP2WireGuard.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "wireguard"; + //传递mKCP Seed + if (String.IsNullOrEmpty(PreTrim(TextBoxQuicAndMkcpSeedUUID.Text)) == false) + { + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + } + } + + #endregion + + #region QUIC传输协议(VMESS) + + //QUIC无伪装模式被选中 + else if (RadioButtonQuicNone.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicNone"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicNone.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "none"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + //QUIC+srtp伪装模式被选中 + else if (RadioButtonQuicSRTP.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicSRTP"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicSRTP.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "srtp"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + //QUIC+utp伪装模式被选中 + else if (RadioButtonQuic2uTP.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "Quic2uTP"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuic2uTP.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "utp"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + //QUIC+wechat-video伪装模式被选中 + else if (RadioButtonQuicWechatVideo.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicWechatVideo"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicWechatVideo.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "wechat-video"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + //QUIC+dtls伪装模式被选中 + else if (RadioButtonQuicDTLS.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicDTLS"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicDTLS.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "dtls"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + //QUIC+wireguard伪装模式被选中 + else if (RadioButtonQuicWireGuard.IsChecked == true) + { + //传递模板类型 + MainWindow.ReceiveConfigurationParameters[0] = "QuicWireGuard"; + //传递方案名称 + MainWindow.ReceiveConfigurationParameters[8] = RadioButtonQuicWireGuard.Content.ToString(); + //传递伪装类型 + MainWindow.ReceiveConfigurationParameters[5] = "wireguard"; + //QUIC 密钥 + MainWindow.ReceiveConfigurationParameters[6] = PreTrim(TextBoxQuicAndMkcpSeedUUID.Text); + //QUIC加密方法 + MainWindow.ReceiveConfigurationParameters[3] = GetEncryptionMethodSS(); + } + + #endregion + + //传递服务端口 + MainWindow.ReceiveConfigurationParameters[1] = PreTrim(TextBoxServerListenPort.Text); + //传递uuid + MainWindow.ReceiveConfigurationParameters[2] = PreTrim(TextBoxNewUUID.Text); + + if (RadioButtonVLESSmKCP.IsChecked == true) + { + MainWindow.mKCPvlessIsSet = true; + } + else + { + MainWindow.mKCPvlessIsSet = false; + } + + if (domainNotEmpty == true && preDomainMask == true) + { + this.Close(); + } + + } + + //取消选择返回主窗口 + private void ButtondCancel_Click(object sender, RoutedEventArgs e) => Close(); + + + //伪装网站处理 + //DisguiseURLprocessing(string fakeUrl); + // private string DisguiseURLprocessing(string fakeUrl) + //{ + //var uri = new Uri(fakeUrl); + //return uri.Host; + //Console.WriteLine(uri.Host); + + ////处理伪装网站域名中的前缀 + //if (fakeUrl.Length >= 7) + //{ + // string testDomainMask = fakeUrl.Substring(0, 7); + // if (String.Equals(testDomainMask, "https:/") || String.Equals(testDomainMask, "http://")) + // { + // string[] tmpUrl = fakeUrl.Split('/'); + // fakeUrl = tmpUrl[2]; + // } + + //} + + //} + + #region 其他设置中的界面控制 + + private void RadioButtonTCP_Checked(object sender, RoutedEventArgs e) + { + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //Random random = new Random(); + int randomServerPort = GetRandomPort(); + TextBoxServerListenPort.Text = randomServerPort.ToString(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonTCPhttp_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "80"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonTCP2TLS_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //显示域名 + ShowDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonVlessTcpTlsWeb_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //显示域名 + ShowDomain(); + + //显示伪装网站 + ShowMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonVlessVmessXtlsTcpWebSocketHot_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //显示复合路径 + ShowVlessVmessMultiplePath(); + + //显示域名 + ShowDomain(); + + //显示伪装网站 + ShowMaskSites(); + + //生成UUID + TextBoxNewUUID.Text = GenerateRandomUUID(); + + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + //单击TextBlockVlessVmessXtlsTcpWebSocket标签则选中RadioButtonVlessVmessXtlsTcpWebSocketHot + private void TextBlockVlessVmessXtlsTcpWebSocket_MouseDown(object sender, MouseButtonEventArgs e) + { + RadioButtonVlessVmessXtlsTcpWebSocketHot.IsChecked = true; + } + private void RadioButtonTCP2TLSnoDomain_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonWebSocketTLS2Web_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //显示Path + ShowPath(); + + //显示域名 + ShowDomain(); + + //显示伪装网站 + ShowMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonWebSocketTLSselfSigned_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //显示Path + ShowPath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + private void RadioButtonHTTP2_Checked(object sender, RoutedEventArgs e) + { + TextBoxServerListenPort.Text = "443"; + + //隐藏mKCP项 + HideMkcpSeed(); + + //隐藏QUIC密钥 + HideQuic(); + + //显示Path + ShowPath(); + + //显示域名 + ShowDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + + //mKCP显示界面 + private void RadioButtonMkcp_Checked(object sender, RoutedEventArgs e) + { + //隐藏QUIC密钥 + HideQuic(); + + //显示mKCP Seed + ShowMkcpSeed(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + + //uuid = Guid.NewGuid(); + TextBoxQuicAndMkcpSeedUUID.Text = GenerateRandomUUID(); + + //Random random = new Random(); + int randomServerPort = GetRandomPort(); + TextBoxServerListenPort.Text = randomServerPort.ToString(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + + //QUIC显示界面 + private void RadioButtonQuicNone_Checked(object sender, RoutedEventArgs e) + { + //隐藏mKCP项 + HideMkcpSeed(); + + //显示QUIC密钥 + ShowQuic(); + + //隐藏Path + HidePath(); + HideVlessVmessMultiplePath(); + + //隐藏域名 + HideDomain(); + + //隐藏伪装网站 + HideMaskSites(); + + //Guid uuid = Guid.NewGuid(); + TextBoxNewUUID.Text = GenerateRandomUUID(); + + //uuid = Guid.NewGuid(); + TextBoxQuicAndMkcpSeedUUID.Text = GenerateRandomUUID(); + + //Random random = new Random(); + int randomServerPort = GetRandomPort(); + TextBoxServerListenPort.Text = randomServerPort.ToString(); + //清除其他选项卡中的选项 + UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + } + + + //隐藏QUIC相关项 + private void HideQuic() + { + TextBlockQuicUUID.Visibility = Visibility.Collapsed; + TextBoxQuicAndMkcpSeedUUID.Visibility = Visibility.Collapsed; + ButtonQuicAndmKcpSeedUUID.Visibility = Visibility.Collapsed; + TextBlockQuicEncryption.Visibility = Visibility.Collapsed; + ComboBoxEncryptionMethodInfo.Visibility = Visibility.Collapsed; + //TextBlockMkcpUUID.Visibility = Visibility.Collapsed; + } + //如果加密方法选择none,则隐藏只QUIC密钥 + private void NoneEncryptionHideQuicKey() + { + TextBlockQuicUUID.Visibility = Visibility.Collapsed; + TextBoxQuicAndMkcpSeedUUID.Visibility = Visibility.Collapsed; + ButtonQuicAndmKcpSeedUUID.Visibility = Visibility.Collapsed; + } + //窗口初始化时,需要做一次隐藏QUIC加密方法 + private void FirstQuicHideEncryption() + { + TextBlockQuicEncryption.Visibility = Visibility.Collapsed; + ComboBoxEncryptionMethodInfo.Visibility = Visibility.Collapsed; + } + //显示QUIC相关项 + private void ShowQuic() + { + TextBlockQuicUUID.Visibility = Visibility.Visible; + TextBoxQuicAndMkcpSeedUUID.Visibility = Visibility.Visible; + ButtonQuicAndmKcpSeedUUID.Visibility = Visibility.Visible; + TextBlockQuicEncryption.Visibility = Visibility.Visible; + ComboBoxEncryptionMethodInfo.Visibility = Visibility.Visible; + + //隐藏mKCP相关项 + TextBlockMkcpSeedUUID.Visibility = Visibility.Collapsed; + TextBlockMkcpUUID.Visibility = Visibility.Collapsed; + } + //隐藏mKCP Seed相关项 + private void HideMkcpSeed() + { + TextBlockMkcpSeedUUID.Visibility = Visibility.Collapsed; + TextBoxQuicAndMkcpSeedUUID.Visibility = Visibility.Collapsed; + ButtonQuicAndmKcpSeedUUID.Visibility = Visibility.Collapsed; + TextBlockMkcpUUID.Visibility = Visibility.Collapsed; + + } + //显示mKCP Seed相关项 + private void ShowMkcpSeed() + { + TextBlockMkcpSeedUUID.Visibility = Visibility.Visible; + TextBoxQuicAndMkcpSeedUUID.Visibility = Visibility.Visible; + ButtonQuicAndmKcpSeedUUID.Visibility = Visibility.Visible; + TextBlockMkcpUUID.Visibility = Visibility.Visible; + //隐藏QUIC标示 + TextBlockQuicUUID.Visibility = Visibility.Collapsed; + } + //隐藏路径相关项 + private void HidePath() + { + //隐藏Path + TextBlockPath.Visibility = Visibility.Collapsed; + TextBoxPath.Visibility = Visibility.Collapsed; + ButtonPath.Visibility = Visibility.Collapsed; + } + //显示路径相关项 + private void ShowPath() + { + HideVlessVmessMultiplePath();//隐藏VLESS VMESS多种方案的路径Path + //显示Path + TextBlockPath.Visibility = Visibility.Visible; + TextBoxPath.Visibility = Visibility.Visible; + TextBoxPath.Text = "/ray"; + ButtonPath.Visibility = Visibility.Visible; + } + //隐藏VLESS VMESS复合方案路径 + private void HideVlessVmessMultiplePath() + { + TextBlockPathVlessWs.Visibility = Visibility.Collapsed; + TextBoxPathVlessWS.Visibility = Visibility.Collapsed; + TextBlockPathVmessTcp.Visibility = Visibility.Collapsed; + TextBoxPathVmessTcp.Visibility = Visibility.Collapsed; + TextBlockPathVmessWs.Visibility = Visibility.Collapsed; + TextBoxPathVmessWS.Visibility = Visibility.Collapsed; + ButtonVlessVmessPath.Visibility = Visibility.Collapsed; + TextBlockTrojanPassword.Visibility = Visibility.Collapsed; + + } + //显示VLESS VMESS复合方案路径 + private void ShowVlessVmessMultiplePath() + { + HidePath();//隐藏普通路径Path + TextBlockPathVlessWs.Visibility = Visibility.Visible; + TextBoxPathVlessWS.Visibility = Visibility.Visible; + TextBoxPathVlessWS.Text = "/vlessws"; + + TextBlockPathVmessTcp.Visibility = Visibility.Visible; + TextBoxPathVmessTcp.Visibility = Visibility.Visible; + TextBoxPathVmessTcp.Text = "/vmesstcp"; + + TextBlockPathVmessWs.Visibility = Visibility.Visible; + TextBoxPathVmessWS.Visibility = Visibility.Visible; + TextBoxPathVmessWS.Text = "/vmessws"; + + ButtonVlessVmessPath.Visibility = Visibility.Visible; + TextBlockTrojanPassword.Visibility = Visibility.Visible; + } + //隐藏域名相关项 + private void HideDomain() + { + //隐藏域名 + TextBlockDomain.Visibility = Visibility.Collapsed; + TextBoxDomain.Visibility = Visibility.Collapsed; + ButtonDomain.Visibility = Visibility.Collapsed; + } + //显示域名相关项 + private void ShowDomain() + { + //显示域名 + TextBlockDomain.Visibility = Visibility.Visible; + TextBoxDomain.Visibility = Visibility.Visible; + //ButtonDomain.Visibility = Visibility.Visible; + } + //隐藏伪装网站 + private void HideMaskSites() + { + TextBlockMaskSites.Visibility = Visibility.Collapsed; + TextBoxMaskSites.Visibility = Visibility.Collapsed; + } + //显示伪装网站 + private void ShowMaskSites() + { + TextBlockMaskSites.Visibility = Visibility.Visible; + TextBoxMaskSites.Visibility = Visibility.Visible; + } + #endregion + + //产生随机的uuid + private void ButtonNewUUID_Click(object sender, RoutedEventArgs e) + { + TextBoxNewUUID.Text = GenerateRandomUUID(); + } + + //产生QUIC密钥/mKCP Seed所用的UUID + private void ButtonQuicAndMkcpSeedUUID_Click(object sender, RoutedEventArgs e) + { + TextBoxQuicAndMkcpSeedUUID.Text = GenerateRandomUUID(); + } + + //更新随机服务端口 + private void ButtonServerListenPort_Click(object sender, RoutedEventArgs e) + { + int randomServerPort = GetRandomPort(); + TextBoxServerListenPort.Text = randomServerPort.ToString(); + } + + //更新单方案随机的Path + private void ButtonPath_Click(object sender, RoutedEventArgs e) + { + string path = GenerateRandomPath(); + TextBoxPath.Text = $"/{path}"; + } + + //更新多方案共存的Path + private void ButtonVlessVmessPath_Click(object sender, RoutedEventArgs e) + { + string path = GenerateRandomPath(); + TextBoxPathVlessWS.Text = $"/{path}"; + + path = GenerateRandomPath(); + TextBoxPathVmessTcp.Text = $"/{path}"; + + path = GenerateRandomPath(); + TextBoxPathVmessWS.Text = $"/{path}"; + } + //TextBox输入内容做预处理 + private string PreTrim(string preString) + { + return preString.Trim(); + } + //生成随机端口 + private int GetRandomPort() + { + Random random = new Random(); + return random.Next(10001, 60000); + } + + //生成随机UUID + private string GenerateRandomUUID() + { + Guid uuid = Guid.NewGuid(); + return uuid.ToString(); + } + + //生成随机Path + private string GenerateRandomPath() + { + Random random = new Random(); + int randomSerialNum = random.Next(0, 4); + //Guid uuid = Guid.NewGuid(); + string uuid = GenerateRandomUUID(); + string[] pathArray = uuid.Split('-'); + string path = pathArray[randomSerialNum]; + return path; + } + //域名检测是否为空 + //private bool TestDomainIsEmpty() + //{ + // if (string.IsNullOrEmpty(PreTrim(TextBoxDomain.Text)) == true) + // { + // //****** "域名不能为空,请检查相关参数设置!" ****** + // MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString()); + // return false; + // } + // else + // { + // return true; + // } + //} + + //加密方法更改后的动作 + private void ComboBoxEncryptionMethodInfo_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + string getMethond = GetEncryptionMethodSS(); + //传递加密方式 + MainWindow.ReceiveConfigurationParameters[3] = getMethond; + if (String.Equals(getMethond,"none")) + { + NoneEncryptionHideQuicKey(); + } + else + { + ShowQuic(); + } + + } + + //读取加密方式 + private string GetEncryptionMethodSS() + { + return ComboBoxEncryptionMethodInfo.SelectedValue.ToString(); + } + private void ButtonDomain_Click(object sender, RoutedEventArgs e) + { + + } + + + + + + + + + + //private void ButtonTestChecked_Click(object sender, RoutedEventArgs e) + //{ + // UncheckLayouts((TabItem)TabControlTemplate.SelectedItem); + + //} + } +} diff --git a/ProxySU/bin/Beta/Beta.zip b/ProxySU/bin/Beta/Beta.zip index 91bc360..588c53c 100644 Binary files a/ProxySU/bin/Beta/Beta.zip and b/ProxySU/bin/Beta/Beta.zip differ diff --git a/TemplateConfg/xray/base.json b/TemplateConfg/xray/base.json new file mode 100644 index 0000000..84a9d1f --- /dev/null +++ b/TemplateConfg/xray/base.json @@ -0,0 +1,12 @@ +{ + "log": {}, + "api": {}, + "dns": {}, + "routing": {}, + "policy": {}, + "inbounds": [], + "outbounds": [], + "transport": {}, + "stats": {}, + "reverse": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/caddy/Http2Web.caddyfile b/TemplateConfg/xray/caddy/Http2Web.caddyfile new file mode 100644 index 0000000..7e62dbc --- /dev/null +++ b/TemplateConfg/xray/caddy/Http2Web.caddyfile @@ -0,0 +1,18 @@ +##domain## { + root * /usr/share/caddy + file_server + tls { + protocols tls1.2 tls1.3 + ciphers TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 + curves x25519 + } + + reverse_proxy ##path## http://localhost:10000 { + transport http { + versions h2c 2 + } + } + ##reverse_Proxy1## + ##reverse_Proxy2## + ##reverse_Proxy3## +} \ No newline at end of file diff --git a/TemplateConfg/xray/caddy/WebSocketTLSWeb.caddyfile b/TemplateConfg/xray/caddy/WebSocketTLSWeb.caddyfile new file mode 100644 index 0000000..bddb8f6 --- /dev/null +++ b/TemplateConfg/xray/caddy/WebSocketTLSWeb.caddyfile @@ -0,0 +1,18 @@ +##domain## { + root * /usr/share/caddy + file_server + tls { + protocols tls1.2 tls1.3 + ciphers TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 + curves x25519 + } + @xray_websocket { + path ##path## + header Connection *Upgrade* + header Upgrade websocket + } + reverse_proxy @xray_websocket localhost:10000 + ##reverse_Proxy1## + ##reverse_Proxy2## + ##reverse_Proxy3## +} \ No newline at end of file diff --git a/TemplateConfg/xray/caddy/vlessTcpTlsWeb.caddyfile b/TemplateConfg/xray/caddy/vlessTcpTlsWeb.caddyfile new file mode 100644 index 0000000..0e9f3d2 --- /dev/null +++ b/TemplateConfg/xray/caddy/vlessTcpTlsWeb.caddyfile @@ -0,0 +1,10 @@ +:8800 { + root * /usr/share/caddy + file_server + ##reverse_Proxy1## + ##reverse_Proxy2## + ##reverse_Proxy3## +} +##domain##:80 { + redir https://##domain##{uri} +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/00_log/00_log.json b/TemplateConfg/xray/client/00_log/00_log.json new file mode 100644 index 0000000..6a4cf00 --- /dev/null +++ b/TemplateConfg/xray/client/00_log/00_log.json @@ -0,0 +1,5 @@ +{ + "log": { + "loglevel": "warning" + } +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/01_api/01_api.json b/TemplateConfg/xray/client/01_api/01_api.json new file mode 100644 index 0000000..aa1982b --- /dev/null +++ b/TemplateConfg/xray/client/01_api/01_api.json @@ -0,0 +1,3 @@ +{ + "api": null +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/02_dns/02_dns.json b/TemplateConfg/xray/client/02_dns/02_dns.json new file mode 100644 index 0000000..63472d2 --- /dev/null +++ b/TemplateConfg/xray/client/02_dns/02_dns.json @@ -0,0 +1,3 @@ +{ + "dns": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/03_routing/03_routing.json b/TemplateConfg/xray/client/03_routing/03_routing.json new file mode 100644 index 0000000..a187d31 --- /dev/null +++ b/TemplateConfg/xray/client/03_routing/03_routing.json @@ -0,0 +1,3 @@ +{ + "routing": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/04_policy/04_policy.json b/TemplateConfg/xray/client/04_policy/04_policy.json new file mode 100644 index 0000000..4beed61 --- /dev/null +++ b/TemplateConfg/xray/client/04_policy/04_policy.json @@ -0,0 +1,3 @@ +{ + "policy": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/05_inbounds/05_inbounds.json b/TemplateConfg/xray/client/05_inbounds/05_inbounds.json new file mode 100644 index 0000000..dbce3dd --- /dev/null +++ b/TemplateConfg/xray/client/05_inbounds/05_inbounds.json @@ -0,0 +1,22 @@ +{ + "inbounds": [ + { + "protocol": "http", + "port": 1081 + }, + { + "port": 1080, + "protocol": "socks", + "sniffing": { + "enabled": true, + "destOverride": [ + "http", + "tls" + ] + }, + "settings": { + "auth": "noauth" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/06_outbounds.json b/TemplateConfg/xray/client/06_outbounds/06_outbounds.json new file mode 100644 index 0000000..20e2beb --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/06_outbounds.json @@ -0,0 +1,3 @@ +{ + "outbounds": [] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/Http2Web_client_config.json b/TemplateConfg/xray/client/06_outbounds/Http2Web_client_config.json new file mode 100644 index 0000000..849b04c --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/Http2Web_client_config.json @@ -0,0 +1,32 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "tls", + "httpSettings": { + "path": null, + "host": [ + "" + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/Http2selfSigned_client_config.json b/TemplateConfg/xray/client/06_outbounds/Http2selfSigned_client_config.json new file mode 100644 index 0000000..7d7153e --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/Http2selfSigned_client_config.json @@ -0,0 +1,32 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "h2", + "httpSettings": { + "path": null + }, + "security": "tls", + "tlsSettings": { + "allowInsecure": true + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/WebSocketTLSWeb_client_config.json b/TemplateConfg/xray/client/06_outbounds/WebSocketTLSWeb_client_config.json new file mode 100644 index 0000000..a8eb804 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/WebSocketTLSWeb_client_config.json @@ -0,0 +1,29 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "ws", + "security": "tls", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/WebSocketTLS_selfSigned_client_config.json b/TemplateConfg/xray/client/06_outbounds/WebSocketTLS_selfSigned_client_config.json new file mode 100644 index 0000000..ae02d4e --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/WebSocketTLS_selfSigned_client_config.json @@ -0,0 +1,32 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "ws", + "wsSettings": { + "path": null + }, + "security": "tls", + "tlsSettings": { + "allowInsecure": true + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/WebSocket_TLS_client_config.json b/TemplateConfg/xray/client/06_outbounds/WebSocket_TLS_client_config.json new file mode 100644 index 0000000..32ed43c --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/WebSocket_TLS_client_config.json @@ -0,0 +1,29 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "security": "tls", + "network": "ws", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/http2_client_config.json b/TemplateConfg/xray/client/06_outbounds/http2_client_config.json new file mode 100644 index 0000000..c244f11 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/http2_client_config.json @@ -0,0 +1,29 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "tls", + "httpSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/mkcp_client_config.json b/TemplateConfg/xray/client/06_outbounds/mkcp_client_config.json new file mode 100644 index 0000000..0e0aef2 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/mkcp_client_config.json @@ -0,0 +1,34 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "kcp", + "kcpSettings": { + "uplinkCapacity": 100, + "downlinkCapacity": 100, + "congestion": true, + "header": { + "type": null + }, + "seed": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/quic_client_config.json b/TemplateConfg/xray/client/06_outbounds/quic_client_config.json new file mode 100644 index 0000000..a863918 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/quic_client_config.json @@ -0,0 +1,32 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "quic", + "quicSettings": { + "security": "chacha20-poly1305", + "key": null, + "header": { + "type": null + } + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/tcpTLSselfSigned_client_config.json b/TemplateConfg/xray/client/06_outbounds/tcpTLSselfSigned_client_config.json new file mode 100644 index 0000000..cb6baab --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/tcpTLSselfSigned_client_config.json @@ -0,0 +1,29 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tlsSettings": { + "allowInsecure": true + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/tcp_TLS_client_config.json b/TemplateConfg/xray/client/06_outbounds/tcp_TLS_client_config.json new file mode 100644 index 0000000..7b5f21a --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/tcp_TLS_client_config.json @@ -0,0 +1,26 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/tcp_client_config.json b/TemplateConfg/xray/client/06_outbounds/tcp_client_config.json new file mode 100644 index 0000000..bb64de1 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/tcp_client_config.json @@ -0,0 +1,25 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/tcp_http_client_config.json b/TemplateConfg/xray/client/06_outbounds/tcp_http_client_config.json new file mode 100644 index 0000000..2f0ebf2 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/tcp_http_client_config.json @@ -0,0 +1,56 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "tcpSettings": { + "header": { + "type": "http", + "request": { + "version": "1.1", + "method": "GET", + "path": [ + "/" + ], + "headers": { + "Host": [ + "www.cloudflare.com", + "www.amazon.com", + "www.microsoft.com", + "www.intel.com" + ], + "User-Agent": [ + "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36", + "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14A456 Safari/601.1.46" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Pragma": "no-cache" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/trojan_tcp_tls.json b/TemplateConfg/xray/client/06_outbounds/trojan_tcp_tls.json new file mode 100644 index 0000000..7eeeaa8 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/trojan_tcp_tls.json @@ -0,0 +1,23 @@ +{ + "outbounds": [ + { + "protocol": "trojan", + "settings": { + "servers": [ + { + "address": null, + "port": 443, + "password": null + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tlsSettings": { + "serverName": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vless_http2_tls_server_config.json b/TemplateConfg/xray/client/06_outbounds/vless_http2_tls_server_config.json new file mode 100644 index 0000000..9b3f640 --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vless_http2_tls_server_config.json @@ -0,0 +1,31 @@ +{ + "outbounds": [ + { + "protocol": "vless", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "encryption": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "tls", + "httpSettings": { + "path": null, + "host": [ + "" + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vless_mkcp_client_config.json b/TemplateConfg/xray/client/06_outbounds/vless_mkcp_client_config.json new file mode 100644 index 0000000..ec37bdc --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vless_mkcp_client_config.json @@ -0,0 +1,33 @@ +{ + "outbounds": [ + { + "protocol": "vless", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "encryption": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "kcp", + "kcpSettings": { + "uplinkCapacity": 100, + "downlinkCapacity": 100, + "congestion": true, + "header": { + "type": null + }, + "seed": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vless_tcp_tls_caddy_cilent_config.json b/TemplateConfg/xray/client/06_outbounds/vless_tcp_tls_caddy_cilent_config.json new file mode 100644 index 0000000..48bad1f --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vless_tcp_tls_caddy_cilent_config.json @@ -0,0 +1,25 @@ +{ + "outbounds": [ + { + "protocol": "vless", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "encryption": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vless_tcp_xtls_client_config.json b/TemplateConfg/xray/client/06_outbounds/vless_tcp_xtls_client_config.json new file mode 100644 index 0000000..8b4a9aa --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vless_tcp_xtls_client_config.json @@ -0,0 +1,26 @@ +{ + "outbounds": [ + { + "protocol": "vless", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "flow": "xtls-rprx-direct", + "encryption": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "xtls" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vless_ws_tls_client_config.json b/TemplateConfg/xray/client/06_outbounds/vless_ws_tls_client_config.json new file mode 100644 index 0000000..a3782be --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vless_ws_tls_client_config.json @@ -0,0 +1,28 @@ +{ + "outbounds": [ + { + "protocol": "vless", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "encryption": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "ws", + "security": "tls", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/vmess_tcp_tls_client_config.json b/TemplateConfg/xray/client/06_outbounds/vmess_tcp_tls_client_config.json new file mode 100644 index 0000000..126e25c --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/vmess_tcp_tls_client_config.json @@ -0,0 +1,36 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": 443, + "users": [ + { + "id": null, + "alterId": 0, + "security": "none" + } + ] + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tcpSettings": { + "header": { + "type": "http", + "request": { + "path": [ + "" + ] + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/06_outbounds/webSocket_client_config.json b/TemplateConfg/xray/client/06_outbounds/webSocket_client_config.json new file mode 100644 index 0000000..5fa0b2a --- /dev/null +++ b/TemplateConfg/xray/client/06_outbounds/webSocket_client_config.json @@ -0,0 +1,25 @@ +{ + "outbounds": [ + { + "protocol": "vmess", + "settings": { + "vnext": [ + { + "address": null, + "port": null, + "users": [ + { + "id": null, + "alterId": 0, + "security": "auto" + } + ] + } + ] + }, + "streamSettings": { + "network": "ws" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/07_transport/07_transport.json b/TemplateConfg/xray/client/07_transport/07_transport.json new file mode 100644 index 0000000..6269103 --- /dev/null +++ b/TemplateConfg/xray/client/07_transport/07_transport.json @@ -0,0 +1,3 @@ +{ + "transport": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/08_stats/08_stats.json b/TemplateConfg/xray/client/08_stats/08_stats.json new file mode 100644 index 0000000..02c9ed0 --- /dev/null +++ b/TemplateConfg/xray/client/08_stats/08_stats.json @@ -0,0 +1,3 @@ +{ + "stats": null +} \ No newline at end of file diff --git a/TemplateConfg/xray/client/09_reverse/09_reverse.json b/TemplateConfg/xray/client/09_reverse/09_reverse.json new file mode 100644 index 0000000..6fa38a4 --- /dev/null +++ b/TemplateConfg/xray/client/09_reverse/09_reverse.json @@ -0,0 +1,3 @@ +{ + "reverse": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/00_log/00_log.json b/TemplateConfg/xray/server/00_log/00_log.json new file mode 100644 index 0000000..6a4cf00 --- /dev/null +++ b/TemplateConfg/xray/server/00_log/00_log.json @@ -0,0 +1,5 @@ +{ + "log": { + "loglevel": "warning" + } +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/01_api/01_api.json b/TemplateConfg/xray/server/01_api/01_api.json new file mode 100644 index 0000000..aa1982b --- /dev/null +++ b/TemplateConfg/xray/server/01_api/01_api.json @@ -0,0 +1,3 @@ +{ + "api": null +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/02_dns/02_dns.json b/TemplateConfg/xray/server/02_dns/02_dns.json new file mode 100644 index 0000000..63472d2 --- /dev/null +++ b/TemplateConfg/xray/server/02_dns/02_dns.json @@ -0,0 +1,3 @@ +{ + "dns": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/03_routing/03_routing.json b/TemplateConfg/xray/server/03_routing/03_routing.json new file mode 100644 index 0000000..0aa4964 --- /dev/null +++ b/TemplateConfg/xray/server/03_routing/03_routing.json @@ -0,0 +1,14 @@ +{ + "routing": { + "domainStrategy": "AsIs", + "rules": [ + { + "type": "field", + "ip": [ + "geoip:private" + ], + "outboundTag": "block" + } + ] + } +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/04_policy/04_policy.json b/TemplateConfg/xray/server/04_policy/04_policy.json new file mode 100644 index 0000000..4beed61 --- /dev/null +++ b/TemplateConfg/xray/server/04_policy/04_policy.json @@ -0,0 +1,3 @@ +{ + "policy": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/00_padavan_router.json b/TemplateConfg/xray/server/05_inbounds/00_padavan_router.json new file mode 100644 index 0000000..2b9d236 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/00_padavan_router.json @@ -0,0 +1,9 @@ +{ + "sniffing": { + "enabled": true, + "destOverride": [ + "http", + "tls" + ] + } +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/05_inbounds.json b/TemplateConfg/xray/server/05_inbounds/05_inbounds.json new file mode 100644 index 0000000..9a8d634 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/05_inbounds.json @@ -0,0 +1,3 @@ +{ + "inbounds": [] +} diff --git a/TemplateConfg/xray/server/05_inbounds/Http2Web_server_config.json b/TemplateConfg/xray/server/05_inbounds/Http2Web_server_config.json new file mode 100644 index 0000000..077c799 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/Http2Web_server_config.json @@ -0,0 +1,27 @@ +{ + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "none", + "httpSettings": { + "path": null, + "host": [ + "" + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/Http2selfSigned_server_config.json b/TemplateConfg/xray/server/05_inbounds/Http2selfSigned_server_config.json new file mode 100644 index 0000000..5f49a0f --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/Http2selfSigned_server_config.json @@ -0,0 +1,28 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "tls", + "tlsSettings": { + "certificates": [ + {} + ] + }, + "httpSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/WebSocketTLSWeb_server_config.json b/TemplateConfg/xray/server/05_inbounds/WebSocketTLSWeb_server_config.json new file mode 100644 index 0000000..7c5f1a5 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/WebSocketTLSWeb_server_config.json @@ -0,0 +1,23 @@ +{ + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "ws", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/WebSocketTLS_selfSigned_server_config.json b/TemplateConfg/xray/server/05_inbounds/WebSocketTLS_selfSigned_server_config.json new file mode 100644 index 0000000..cd4afba --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/WebSocketTLS_selfSigned_server_config.json @@ -0,0 +1,28 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "security": "tls", + "tlsSettings": { + "certificates": [ + {} + ] + }, + "network": "ws", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/WebSocket_TLS_server_config.json b/TemplateConfg/xray/server/05_inbounds/WebSocket_TLS_server_config.json new file mode 100644 index 0000000..72b3a55 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/WebSocket_TLS_server_config.json @@ -0,0 +1,31 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "security": "tls", + "tlsSettings": { + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + }, + "network": "ws", + "wsSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/http2_server_config.json b/TemplateConfg/xray/server/05_inbounds/http2_server_config.json new file mode 100644 index 0000000..79dec03 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/http2_server_config.json @@ -0,0 +1,31 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "h2", + "security": "tls", + "tlsSettings": { + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + }, + "httpSettings": { + "path": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/mkcp_server_config.json b/TemplateConfg/xray/server/05_inbounds/mkcp_server_config.json new file mode 100644 index 0000000..bf8a13c --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/mkcp_server_config.json @@ -0,0 +1,28 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "mkcp", + "kcpSettings": { + "uplinkCapacity": 100, + "downlinkCapacity": 100, + "congestion": true, + "header": { + "type": null + }, + "seed": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/quic_server_config.json b/TemplateConfg/xray/server/05_inbounds/quic_server_config.json new file mode 100644 index 0000000..9e28939 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/quic_server_config.json @@ -0,0 +1,26 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "quic", + "quicSettings": { + "security": "chacha20-poly1305", + "key": null, + "header": { + "type": null + } + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/tcpTLSselfSigned_server_config.json b/TemplateConfg/xray/server/05_inbounds/tcpTLSselfSigned_server_config.json new file mode 100644 index 0000000..61e7ac8 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/tcpTLSselfSigned_server_config.json @@ -0,0 +1,25 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "security": "tls", + "tlsSettings": { + "certificates": [ + {} + ] + }, + "network": "tcp" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/tcp_TLS_server_config.json b/TemplateConfg/xray/server/05_inbounds/tcp_TLS_server_config.json new file mode 100644 index 0000000..d92148a --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/tcp_TLS_server_config.json @@ -0,0 +1,28 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "security": "tls", + "tlsSettings": { + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + }, + "network": "tcp" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/tcp_http_server_config.json b/TemplateConfg/xray/server/05_inbounds/tcp_http_server_config.json new file mode 100644 index 0000000..11b896f --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/tcp_http_server_config.json @@ -0,0 +1,44 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "tcp", + "tcpSettings": { + "header": { + "type": "http", + "response": { + "version": "1.1", + "status": "200", + "reason": "OK", + "headers": { + "Content-Type": [ + "application/octet-stream", + "application/x-msdownload", + "text/html", + "application/x-shockwave-flash" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Pragma": "no-cache" + } + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/tcp_server_config.json b/TemplateConfg/xray/server/05_inbounds/tcp_server_config.json new file mode 100644 index 0000000..25f5e52 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/tcp_server_config.json @@ -0,0 +1,16 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_http2_tls_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_http2_tls_server_config.json new file mode 100644 index 0000000..96bc51f --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_http2_tls_server_config.json @@ -0,0 +1,27 @@ +{ + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "" + } + ], + "decryption": "none" + }, + "streamSettings": { + "network": "h2", + "security": "none", + "httpSettings": { + "path": null, + "host": [ + "" + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_mkcp_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_mkcp_server_config.json new file mode 100644 index 0000000..4c7f4c2 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_mkcp_server_config.json @@ -0,0 +1,28 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": null + } + ], + "decryption": "none" + }, + "streamSettings": { + "network": "mkcp", + "kcpSettings": { + "uplinkCapacity": 100, + "downlinkCapacity": 100, + "congestion": true, + "header": { + "type": null + }, + "seed": null + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_tcp_tls_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_tcp_tls_server_config.json new file mode 100644 index 0000000..dc4e0e6 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_tcp_tls_server_config.json @@ -0,0 +1,36 @@ +{ + "inbounds": [ + { + "port": 443, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": null + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 8800 + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tlsSettings": { + "alpn": [ + "http/1.1" + ], + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_tcp_xtls_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_tcp_xtls_server_config.json new file mode 100644 index 0000000..040a74d --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_tcp_xtls_server_config.json @@ -0,0 +1,37 @@ +{ + "inbounds": [ + { + "port": 443, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": null, + "flow": "xtls-rprx-direct" + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 8800 + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "xtls", + "xtlsSettings": { + "alpn": [ + "http/1.1" + ], + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_vmess_xtls_tcp_websocket_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_vmess_xtls_tcp_websocket_server_config.json new file mode 100644 index 0000000..dcf7a4d --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_vmess_xtls_tcp_websocket_server_config.json @@ -0,0 +1,145 @@ +{ + "inbounds": [ + { + "port": 443, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": null, + "flow": "xtls-rprx-direct" + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 1310, + "xver": 1 + }, + { + "path": "/websocket", + "dest": 1234, + "xver": 1 + }, + { + "path": "/vmesstcp", + "dest": 2345, + "xver": 1 + }, + { + "path": "/vmessws", + "dest": 3456, + "xver": 1 + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "xtls", + "xtlsSettings": { + "alpn": [ + "http/1.1" + ], + "certificates": [ + { + "certificateFile": "/usr/local/etc/xray/ssl/xray_ssl.crt", + "keyFile": "/usr/local/etc/xray/ssl/xray_ssl.key" + } + ] + } + } + }, + { + "port": 1310, + "listen": "127.0.0.1", + "protocol": "trojan", + "settings": { + "clients": [ + { + "password": null + } + ], + "fallbacks": [ + { + "dest": null + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "none", + "tcpSettings": { + "acceptProxyProtocol": true + } + } + }, + { + "port": 1234, + "listen": "127.0.0.1", + "protocol": "vless", + "settings": { + "clients": [ + { + "id": null + } + ], + "decryption": "none" + }, + "streamSettings": { + "network": "ws", + "security": "none", + "wsSettings": { + "acceptProxyProtocol": true, + "path": "/websocket" + } + } + }, + { + "port": 2345, + "listen": "127.0.0.1", + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "none", + "tcpSettings": { + "acceptProxyProtocol": true, + "header": { + "type": "http", + "request": { + "path": [ + "/vmesstcp" + ] + } + } + } + } + }, + { + "port": 3456, + "listen": "127.0.0.1", + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null + } + ] + }, + "streamSettings": { + "network": "ws", + "security": "none", + "wsSettings": { + "acceptProxyProtocol": true, + "path": "/vmessws" + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/vless_ws_tls_server_config.json b/TemplateConfg/xray/server/05_inbounds/vless_ws_tls_server_config.json new file mode 100644 index 0000000..fc398df --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/vless_ws_tls_server_config.json @@ -0,0 +1,24 @@ +{ + "inbounds": [ + { + "port": 10000, + "listen": "127.0.0.1", + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "" + } + ], + "decryption": "none" + }, + "streamSettings": { + "network": "ws", + "security": "none", + "wsSettings": { + "path": "" + } + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/05_inbounds/webSocket_server_config.json b/TemplateConfg/xray/server/05_inbounds/webSocket_server_config.json new file mode 100644 index 0000000..42ffda2 --- /dev/null +++ b/TemplateConfg/xray/server/05_inbounds/webSocket_server_config.json @@ -0,0 +1,19 @@ +{ + "inbounds": [ + { + "port": null, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": null, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "ws" + } + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/06_outbounds/06_outbounds.json b/TemplateConfg/xray/server/06_outbounds/06_outbounds.json new file mode 100644 index 0000000..467a4e1 --- /dev/null +++ b/TemplateConfg/xray/server/06_outbounds/06_outbounds.json @@ -0,0 +1,12 @@ +{ + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ] +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/07_transport/07_transport.json b/TemplateConfg/xray/server/07_transport/07_transport.json new file mode 100644 index 0000000..6269103 --- /dev/null +++ b/TemplateConfg/xray/server/07_transport/07_transport.json @@ -0,0 +1,3 @@ +{ + "transport": {} +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/08_stats/08_stats.json b/TemplateConfg/xray/server/08_stats/08_stats.json new file mode 100644 index 0000000..02c9ed0 --- /dev/null +++ b/TemplateConfg/xray/server/08_stats/08_stats.json @@ -0,0 +1,3 @@ +{ + "stats": null +} \ No newline at end of file diff --git a/TemplateConfg/xray/server/09_reverse/09_reverse.json b/TemplateConfg/xray/server/09_reverse/09_reverse.json new file mode 100644 index 0000000..6fa38a4 --- /dev/null +++ b/TemplateConfg/xray/server/09_reverse/09_reverse.json @@ -0,0 +1,3 @@ +{ + "reverse": {} +} \ No newline at end of file