diff --git a/ProxySU/App.xaml b/ProxySU/App.xaml
index 727c569..4a9db0e 100644
--- a/ProxySU/App.xaml
+++ b/ProxySU/App.xaml
@@ -8,6 +8,7 @@
+
diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml
index aadc1c5..fafba85 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 - v1.8.6" Height="600" Width="530">
+ Title="ProxySU - v1.8.6" Height="625" Width="530">
@@ -32,7 +32,22 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -->
@@ -351,7 +366,6 @@
-
diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs
index 13a6fe5..451d2b9 100644
--- a/ProxySU/MainWindow.xaml.cs
+++ b/ProxySU/MainWindow.xaml.cs
@@ -34,6 +34,12 @@ namespace ProxySU
///
public partial class MainWindow : Window
{
+ //语言参数
+ public class LanguageInfo
+ {
+ public string Name { get; set; }
+ public string Value { get; set; }
+ }
public static string[] ReceiveConfigurationParameters { get; set; }
//ReceiveConfigurationParameters[0]----模板类型
//ReceiveConfigurationParameters[1]----服务端口
@@ -53,11 +59,29 @@ namespace ProxySU
//****** ******
// Application.Current.FindResource("").ToString()
+ //
+ // {DynamicResource }
public MainWindow()
{
-
InitializeComponent();
- ResourcesLoad();
+
+ List languageList = new List();
+
+ languageList.Add(new LanguageInfo { Name = "auto", Value = "auto" });
+ languageList.Add(new LanguageInfo { Name = "English", Value = "en-US" });
+ languageList.Add(new LanguageInfo { Name = "简体中文", Value = "zh-CN" });
+ languageList.Add(new LanguageInfo { Name = "正體中文", Value = "zh-TW" });
+
+ ComboBoxLanguage.ItemsSource = languageList;
+
+ ComboBoxLanguage.DisplayMemberPath = "Name";//显示出来的值
+ ComboBoxLanguage.SelectedValuePath = "Value";//实际选中后获取的结果的值
+ ComboBoxLanguage.SelectedIndex = 0;
+
+ DataContext = this;
+ string Culture = System.Globalization.CultureInfo.InstalledUICulture.Name;
+ //Culture = "en-US";
+ ResourcesLoad(Culture);
//初始化选定密码登录
RadioButtonPasswordLogin.IsChecked = true;
//初始化选定无代理
@@ -77,13 +101,13 @@ namespace ProxySU
TextBoxNaiveUser.Text = RandomUserName();
//初始化三合一的所有内容
- TextBoxV2rayUUID3in1.Text = RandomUUID();
- TextBoxV2rayPath3in1.Text = "/ray";
+ //TextBoxV2rayUUID3in1.Text = RandomUUID();
+ //TextBoxV2rayPath3in1.Text = "/ray";
- TextBoxTrojanPassword3in1.Text= RandomUUID();
+ //TextBoxTrojanPassword3in1.Text= RandomUUID();
- TextBoxNaiveUser3in1.Text = RandomUserName();
- TextBoxNaivePassword3in1.Text= RandomUUID();
+ //TextBoxNaiveUser3in1.Text = RandomUserName();
+ //TextBoxNaivePassword3in1.Text= RandomUUID();
}
@@ -121,11 +145,11 @@ namespace ProxySU
}
#endregion
- #region 主界面控件的有效无效控制代码块
+ #region 主界面控件的有效无效控制代码块及界面语言
+
//加载语言资源文件
- private void ResourcesLoad()
+ private void ResourcesLoad(string Culture)
{
- string Culture = System.Globalization.CultureInfo.InstalledUICulture.Name;
List dictionaryList = new List();
foreach (ResourceDictionary dictionary in Application.Current.Resources.MergedDictionaries)
{
@@ -145,6 +169,25 @@ namespace ProxySU
Application.Current.Resources.MergedDictionaries.Add(resourceDictionary);
}
}
+
+ //界面语言处理
+ private void ComboBoxLanguage_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ string languageCulture;
+ object languageSelected;
+ languageSelected = ComboBoxLanguage.SelectedValue;
+ languageCulture = languageSelected.ToString();
+ if (languageCulture.Equals("auto"))
+ {
+ languageCulture = System.Globalization.CultureInfo.InstalledUICulture.Name;
+ ResourcesLoad(languageCulture);
+ }
+ else
+ {
+ ResourcesLoad(languageCulture);
+ }
+ //display.Text = language;
+ }
private void RadioButtonNoProxy_Checked(object sender, RoutedEventArgs e)
{
TextBlockProxyHost.IsEnabled = false;
@@ -623,7 +666,7 @@ namespace ProxySU
else
{
//******"检测结果:OK!"******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRoot_OK").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1405,7 +1448,9 @@ namespace ProxySU
else
{
//****** "证书安装到V2ray失败,原因未知,可以向开发者提问!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToV2RayFail").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftFail").ToString() +
+ "V2Ray" +
+ Application.Current.FindResource("DisplayInstallInfo_InstallCertFailAsk").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1676,6 +1721,7 @@ namespace ProxySU
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
+
//****** "正在启动Caddy(第二次尝试)!" ******
currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecond").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
@@ -1719,7 +1765,7 @@ namespace ProxySU
}
//****** "正在启动V2ray......" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2Ray").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoft").ToString() + "V2ray......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1741,7 +1787,7 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/local/bin/v2ray") == true)
{
//****** "V2ray启动成功!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2RayOK").ToString();
+ currentStatus = "V2ray" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1751,13 +1797,13 @@ namespace ProxySU
else
{
//****** "V2ray启动失败!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2RayFail").ToString();
+ currentStatus = "V2ray" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(3000);
- //****** "正在启动V2ray(第二次尝试)!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2RaySecond").ToString();
+ //****** "正在第二次尝试启动V2ray!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoftSecond").ToString() + "V2ray!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1776,7 +1822,7 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/local/bin/v2ray") == true)
{
//****** "V2ray启动成功!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2RayOK").ToString();
+ currentStatus = "V2ray" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -1786,13 +1832,13 @@ namespace ProxySU
else
{
//****** "V2ray启动失败(第二次)!退出安装!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartV2RaySecondFail").ToString();
+ currentStatus = "V2ray" + Application.Current.FindResource("DisplayInstallInfo_StartSoftSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
//****** "V2Ray启动失败,原因未知!请向开发者问询!" ******
- MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_StartV2RayFailedExit").ToString());
+ MessageBox.Show("V2Ray" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFailedExit").ToString());
return;
}
}
@@ -1923,7 +1969,7 @@ namespace ProxySU
}
}
//****** "V2Ray安装成功,祝你玩的愉快!!" ******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_V2RayProxyInstalledOK").ToString();
+ currentStatus = "V2Ray" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -2084,7 +2130,7 @@ namespace ProxySU
else
{
//******"检测结果:OK!"******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRoot_OK").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -2092,7 +2138,7 @@ namespace ProxySU
}
//******"检测系统是否已经安装V2ray......"******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistV2Ray").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "V2ray......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -2108,10 +2154,10 @@ namespace ProxySU
if (resultCmdTestV2rayInstalled.Contains("/usr/bin/v2ray") == false && resultCmdTestV2rayInstalled.Contains("/usr/local/bin/v2ray") == false)
{
- //******"远程主机未安装V2ray,退出!"******
- MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeV2RayNotInstall").ToString());
-
- currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeV2RayNotInstall").ToString();
+ //******"退出!原因:远程主机未安装V2ray"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "V2Ray!");
+ //******"退出!原因:远程主机未安装V2ray"******
+ currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "V2Ray!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -2420,7 +2466,7 @@ namespace ProxySU
}
if (String.IsNullOrEmpty(ReceiveConfigurationParameters[4]) == true)
{
- //****** "空域名,请检查相关参数设置!" ******
+ //****** "域名不能为空,请检查相关参数设置!" ******
MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
@@ -2505,7 +2551,7 @@ namespace ProxySU
else
{
//******"检测结果:OK!"******
- currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRoot_OK").ToString();
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -2528,11 +2574,13 @@ namespace ProxySU
if (resultCmdTestTrojanInstalled.Contains("/usr/local/bin/trojan-go") == true)
{
- //******"远程主机已安装Trojan-go,是否强制重新安装?"******
- string messageShow = Application.Current.FindResource("MessageBoxShow_ExistedSoft").ToString() +
- "Trojan-go" +
- Application.Current.FindResource("MessageBoxShow_ForceInstallSoft").ToString();
- MessageBoxResult messageBoxResult = MessageBox.Show(messageShow, "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+
+ MessageBoxResult messageBoxResult = MessageBox.Show(
+ //******"远程主机已安装"******
+ Application.Current.FindResource("MessageBoxShow_ExistedSoft").ToString() +
+ "Trojan-go" +
+ //******",是否强制重新安装?"******
+ Application.Current.FindResource("MessageBoxShow_ForceInstallSoft").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.No)
{
//******"安装取消,退出"******
@@ -2559,7 +2607,7 @@ namespace ProxySU
}
else
{
- //******"检测结果:未安装V2Ray!"******
+ //******"检测结果:未安装Trojan-go!"******
currentStatus = Application.Current.FindResource("DisplayInstallInfo_NoInstalledSoft").ToString() + "Trojan-go!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);//显示命令执行的结果
currentShellCommandResult = currentStatus;
@@ -3004,7 +3052,7 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- //****** "上传配置文件......" ******
+ //****** "安装完毕,上传配置文件......" ******
currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadSoftConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
@@ -3161,7 +3209,10 @@ namespace ProxySU
}
else
{
- currentStatus = "证书安装到Trojan-go失败,原因未知,可以向开发者提问!";
+ //****** "证书安装到Trojan-go失败,原因未知,可以向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftFail").ToString() +
+ "Trojan-go" +
+ Application.Current.FindResource("DisplayInstallInfo_InstallCertFailAsk").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3174,8 +3225,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- //安装Caddy
- currentStatus = "正在安装Caddy";
+ //****** "安装Caddy......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstallCaddy").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3263,9 +3314,10 @@ namespace ProxySU
if (!installResult.Contains("/usr/bin/caddy"))
{
- MessageBox.Show("安装Caddy失败!");
-
- currentStatus = "安装Caddy失败!";
+ //****** "安装Caddy失败!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_ErrorInstallCaddyFail").ToString());
+ //****** "安装Caddy失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorInstallCaddyFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3274,7 +3326,8 @@ namespace ProxySU
return;
}
- currentStatus = "Caddy安装成功!";
+ //****** "Caddy安装成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstalledCaddyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3286,9 +3339,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
-
- currentStatus = "上传Caddy配置文件......";
+ //****** "上传Caddy配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3324,15 +3376,16 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "Caddy配置文件上传成功,OK!";
+ //****** "Caddy配置文件上传成功,OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- //启动Caddy服务
- currentStatus = "正在启动Caddy......";
+ //****** "正在启动Caddy......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyService").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3352,8 +3405,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- //运行成功
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3362,13 +3415,15 @@ namespace ProxySU
}
else
{
- //运行失败
- currentStatus = "Caddy启动失败!";
+ //****** "Caddy启动失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(3000);
- currentStatus = "正在启动Caddy(第二次尝试)!";
+
+ //****** "正在启动Caddy(第二次尝试)!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecond").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3386,7 +3441,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3395,17 +3451,21 @@ namespace ProxySU
}
else
{
- currentStatus = "Caddy启动失败(第二次)!退出安装!";
+ //****** "Caddy启动失败(第二次)!退出安装!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("Caddy启动失败,原因未知!请向开发者问询!");
+
+ //****** "Caddy启动失败,原因未知!请向开发者问询!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_CaddyServiceFailedExit").ToString());
return;
}
}
- currentStatus = "正在启动Trojan-Go......";
+ //****** "正在启动Trojan-go......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoft").ToString() + "Trojan-go......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3427,8 +3487,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/local/bin/trojan-go") == true)
{
- //运行成功
- currentStatus = "Trojan-go启动成功!";
+ //****** "Trojan-go启动成功!" ******
+ currentStatus = "Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3437,13 +3497,15 @@ namespace ProxySU
}
else
{
- //运行失败
- currentStatus = "Trojan-go启动失败!";
+ //****** "Trojan-go启动失败!" ******
+ currentStatus = "Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(3000);
- currentStatus = "正在启动Trojan-go(第二次尝试)!";
+
+ //****** "正在第二次尝试启动Trojan-go!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoftSecond").ToString() + "Trojan-go!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3461,7 +3523,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("usr/local/bin/trojan-go") == true)
{
- currentStatus = "Trojan-go启动成功!";
+ //****** "Trojan-go启动成功!" ******
+ currentStatus = "Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3470,19 +3533,23 @@ namespace ProxySU
}
else
{
- currentStatus = "Trojan-go启动失败(第二次)!退出安装!";
+ //****** "Trojan-go启动失败(第二次)!退出安装!" ******
+ currentStatus = "Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_StartSoftSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("Trojan-go启动失败,原因未知!请向开发者问询!");
+
+ //****** "Trojan-go启动失败,原因未知!请向开发者问询!" ******
+ MessageBox.Show("Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFailedExit").ToString());
return;
}
}
//测试BBR条件,若满足提示是否启用
- currentStatus = "BBR测试......";
+ //****** "BBR测试......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3506,7 +3573,8 @@ namespace ProxySU
//如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
if (detectResult == true && resultCmdTestBBR.Contains("bbr") == false)
{
- currentStatus = "正在启用BBR......";
+ //****** "正在启用BBR......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3531,7 +3599,8 @@ namespace ProxySU
}
else if (resultCmdTestBBR.Contains("bbr") == true)
{
- currentStatus = "BBR已经启用了!";
+ //****** "BBR已经启用了!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRisEnabled").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3539,7 +3608,8 @@ namespace ProxySU
}
else
{
- currentStatus = "系统不满足启用BBR的条件,启用失败!";
+ //****** "系统不满足启用BBR的条件,启用失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRFailed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3548,9 +3618,9 @@ namespace ProxySU
client.Disconnect();//断开服务器ssh连接
-
- //生成客户端配置
- currentStatus = "生成客户端配置......";
+
+ //****** "生成客户端配置......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateClientConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3584,7 +3654,8 @@ namespace ProxySU
}
}
- currentStatus = "Trojan-go安装成功,祝你玩的愉快!!";
+ //****** "Trojan-go安装成功,祝你玩的愉快!!" ******
+ currentStatus = "Trojan-go" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3622,7 +3693,8 @@ namespace ProxySU
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
@@ -3634,8 +3706,8 @@ namespace ProxySU
//升级Trojan-go主程序
private void UpdateTojanGo(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar)
{
- string currentStatus = "正在登录远程主机......";
- //Action updateAction = new Action(UpdateTextBlock);
+ //******"正在登录远程主机......"******
+ string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3675,15 +3747,19 @@ namespace ProxySU
client.Connect();
if (client.IsConnected == true)
{
- currentStatus = "主机登录成功";
+ //******"主机登录成功"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果在监视窗口
Thread.Sleep(1000);
}
- //检测是否运行在root权限下
- currentShellCommandResult = "检测是否运行在root权限下...";
+
+ //******"检测是否运行在root权限下..."******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
sshShellCommand = @"id -u";
@@ -3694,26 +3770,23 @@ namespace ProxySU
string testRootAuthority = currentShellCommandResult;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
else
{
- currentShellCommandResult = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- ////检测是否运行在root权限下
- //string testRootAuthority = client.RunCommand(@"id -u").Result;
- //if (testRootAuthority.Equals("0\n") == false)
- //{
- // MessageBox.Show("请使用具有root权限的账户登录主机!!");
- // client.Disconnect();
- // return;
- //}
- //检测当前安装的版本
- currentStatus = "检测远程主机Trojan-Go版本......";
+
+ //******"检测系统是否已经安装Trojan-go......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "Trojan-go......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3730,9 +3803,10 @@ namespace ProxySU
if (resultCmdTestTrojanInstalled.Contains("/usr/local/bin/trojan-go") == false)
{
- MessageBoxResult messageBoxResult = MessageBox.Show("远程主机未安装Trojan-Go!");
-
- currentStatus = "未安装Trojan-Go,退出";
+ //******"退出!原因:远程主机未安装Trojan-go"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan-go!");
+ //******"退出!原因:远程主机未安装Trojan-go"******
+ currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan-go!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3761,10 +3835,19 @@ namespace ProxySU
if (trojanNewVersion.Equals(trojanCurrentVersion) == false)
{
- MessageBoxResult messageBoxResult = MessageBox.Show($"远程主机当前版本为:v{trojanCurrentVersion}\n最新版本为:{trojanNewVersion}\n是否升级为最新版本?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+ MessageBoxResult messageBoxResult = MessageBox.Show(
+ //****** "远程主机当前版本为:v" ******
+ Application.Current.FindResource("DisplayInstallInfo_CurrentVersion").ToString() +
+ $"{trojanCurrentVersion}\n" +
+ //****** "最新版本为:" ******
+ Application.Current.FindResource("DisplayInstallInfo_NewVersion").ToString() +
+ $"{trojanNewVersion}\n" +
+ //****** "是否升级为最新版本?" ******
+ Application.Current.FindResource("DisplayInstallInfo_IsOrNoUpgradeNewVersion").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.Yes)
{
- currentStatus = "正在升级Trojan-Go到最新版本......";
+ //****** "正在升级到最新版本......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartUpgradeNewVersion").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3802,8 +3885,11 @@ namespace ProxySU
//client.RunCommand(sshcmd);
//sshcmd = @"mv /usr/local/etc/trojan/config.json.bak /usr/local/etc/trojan/config.json";
//client.RunCommand(sshcmd);
- MessageBox.Show($"升级成功!!\n当前版本为:v{trojanCurrentVersion}\n最新版本为:{trojanNewVersion}");
- currentStatus = "升级成功!当前已是最新版本!";
+
+ //****** "升级成功!当前已是最新版本!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionOK").ToString());
+ //****** "升级成功!当前已是最新版本!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3812,8 +3898,10 @@ namespace ProxySU
}
else
{
- MessageBox.Show("升级失败,原因未知,请向开发者提问,以寻求支持!");
- currentStatus = "升级失败!";
+ //****** "升级失败,原因未知,请向开发者提问!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionFail").ToString());
+ //****** "升级失败,原因未知,请向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3826,7 +3914,8 @@ namespace ProxySU
else
{
- currentStatus = "升级取消,退出";
+ //****** "升级取消,退出!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeVersionCancel").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3838,8 +3927,12 @@ namespace ProxySU
}
else
{
- MessageBox.Show($"远程主机当前已是最新版本:{trojanNewVersion}\n无需升级!");
- currentStatus = "已是最新版本,无需升级,退出";
+ //****** "远程主机当前已是最新版本:" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IsNewVersion").ToString() +
+ $"{trojanNewVersion}\n" +
+ //****** "无需升级!退出!" ******
+ Application.Current.FindResource("DisplayInstallInfo_NotUpgradeVersion").ToString();
+ MessageBox.Show(currentStatus);
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3876,7 +3969,8 @@ namespace ProxySU
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
//清空参数空间
@@ -3887,7 +3981,8 @@ namespace ProxySU
}
if (string.IsNullOrEmpty(TextBoxTrojanHostDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -3942,8 +4037,8 @@ namespace ProxySU
//登录远程主机布署Trojan程序
private void StartSetUpTrojan(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar, string serverConfig, string clientConfig, string upLoadPath)
{
- string currentStatus = "正在登录远程主机......";
- //Action updateAction = new Action(UpdateTextBlock);
+ //******"正在登录远程主机......"******
+ string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -3983,15 +4078,17 @@ namespace ProxySU
client.Connect();
if (client.IsConnected == true)
{
- currentStatus = "主机登录成功";
+ //******"主机登录成功"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果在监视窗口
Thread.Sleep(1000);
}
- //检测是否运行在root权限下
- currentStatus = "检测是否运行在root权限下...";
+
+ //******"检测是否运行在root权限下..."******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4004,21 +4101,23 @@ namespace ProxySU
string testRootAuthority = currentShellCommandResult;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
else
{
- currentStatus = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
-
- //检测是否安装有Trojan
- currentStatus = "检测系统是否已经安装Trojan......";
+
+ //******"检测系统是否已经安装Trojan......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "Trojan......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4034,10 +4133,16 @@ namespace ProxySU
if (resultCmdTestTrojanInstalled.Contains("/usr/local/bin/trojan") == true)
{
- MessageBoxResult messageBoxResult = MessageBox.Show("远程主机已安装Trojan,是否强制重新安装?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+ MessageBoxResult messageBoxResult = MessageBox.Show(
+ //******"远程主机已安装"******
+ Application.Current.FindResource("MessageBoxShow_ExistedSoft").ToString() +
+ "Trojan" +
+ //******",是否强制重新安装?"******
+ Application.Current.FindResource("MessageBoxShow_ForceInstallSoft").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.No)
{
- currentStatus = "安装取消,退出";
+ //******"安装取消,退出"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstallationCanceledExit").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4048,7 +4153,8 @@ namespace ProxySU
}
else
{
- currentStatus = "已选择强制安装Trojan!";
+ //******"已选择强制安装Trojan-go!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ForceInstallSoft").ToString() + "Trojan!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4057,14 +4163,15 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:未安装Trojan!";
+ //******"检测结果:未安装Trojan!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_NoInstalledSoft").ToString() + "Trojan!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);//显示命令执行的结果
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- //检测远程主机系统环境是否符合要求
- currentStatus = "检测系统是否符合安装要求......";
+ //******"检测系统是否符合安装要求......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_CheckSystemRequirements").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4079,8 +4186,10 @@ namespace ProxySU
string resultCmd = currentShellCommandResult;
if (resultCmd.Contains("x86_64") == false)
{
- MessageBox.Show($"请在x86_64系统中安装Trojan");
- currentStatus = "系统不符合要求,安装失败!!";
+ //******"请在x86_64系统中安装Trojan" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_PleaseInstallSoftAtX64").ToString() + "NaiveProxy......");
+ //****** "系统环境不满足要求,安装失败!!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_MissingSystemComponents").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4140,8 +4249,11 @@ namespace ProxySU
//也就是apt ,dnf\yum, zypper必须安装其中之一,且必须安装Systemd的系统才能安装。
if ((getApt && getDnf && getYum && getZypper) || getSystemd)
{
- MessageBox.Show($"系统缺乏必要的安装组件如:apt-get||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本");
- currentStatus = "系统环境不满足要求,安装失败!!";
+ //******"系统缺乏必要的安装组件如:apt||dnf||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_MissingSystemComponents").ToString());
+
+ //******"系统环境不满足要求,安装失败!!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_MissingSystemComponents").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4152,7 +4264,8 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_SystemRequirementsOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4194,7 +4307,8 @@ namespace ProxySU
if (testSELinux.Contains("Enforcing") == true)
{
- currentStatus = "检测到系统启用SELinux,且工作在严格模式下,需改为宽松模式!修改中...";
+ //******"检测到系统启用SELinux,且工作在严格模式下,需改为宽松模式!修改中......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableSELinux").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4208,7 +4322,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- currentStatus = "修改完毕!";
+ //******"修改完毕!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_SELinuxModifyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4217,9 +4332,8 @@ namespace ProxySU
}
- //检测域名解析是否正确
-
- currentStatus = "正在检测域名是否解析到当前VPS的IP上......";
+ //****** "正在检测域名是否解析到当前VPS的IP上......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestDomainResolve").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4255,7 +4369,8 @@ namespace ProxySU
string resultTestDomainCmd = currentShellCommandResult;
if (String.Equals(nativeIp, resultTestDomainCmd) == true)
{
- currentStatus = "解析正确!";
+ //****** "解析正确!OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DomainResolveOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4264,13 +4379,15 @@ namespace ProxySU
}
else
{
- currentStatus = "域名未能正确解析到当前VPS的IP上!安装失败!";
+ //****** "域名未能正确解析到当前VPS的IP上!安装失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorDomainResolve").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!");
+ //****** "域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorDomainResolve").ToString());
client.Disconnect();
return;
}
@@ -4289,7 +4406,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "正在检测端口占用情况......";
+ //****** "检测端口占用情况......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestPortUsed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4311,10 +4429,12 @@ namespace ProxySU
if (String.IsNullOrEmpty(testPort80) == false || String.IsNullOrEmpty(testPort443) == false)
{
- MessageBoxResult dialogResult = MessageBox.Show("80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?", "Stop application", MessageBoxButton.YesNo);
+ //****** "80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?" ******
+ MessageBoxResult dialogResult = MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorPortUsed").ToString(), "Stop application", MessageBoxButton.YesNo);
if (dialogResult == MessageBoxResult.No)
{
- currentStatus = "端口被占用,安装失败......";
+ //****** "端口被占用,安装失败......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorPortUsedFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4324,7 +4444,8 @@ namespace ProxySU
return;
}
- currentStatus = "正在释放80/443端口......";
+ //****** "正在释放80/443端口......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ReleasePort").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4372,7 +4493,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "80/443端口释放完毕!";
+ //****** "80/443端口释放完毕!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ReleasePortOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4381,23 +4503,24 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:未被占用!";
+ //****** "检测结果:未被占用!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_PortNotUsed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
-
- currentStatus = "系统环境检测完毕,符合安装要求,开始布署......";
+ //****** "系统环境检测完毕,符合安装要求,开始布署......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstalling").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- //打开防火墙端口
- currentStatus = "开启防火墙相应端口......";
+ //****** "开启防火墙相应端口......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_OpenFireWallPort").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4452,7 +4575,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
//下载安装脚本安装
- currentStatus = "正在安装Trojan......";
+ //****** "正在安装Trojan-go......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstallSoft").ToString() + "Trojan......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4478,9 +4602,10 @@ namespace ProxySU
if (!installResult.Contains("/usr/local/bin/trojan"))
{
- MessageBox.Show("安装Trojan失败(官方脚本运行出错!");
-
- currentStatus = "安装Trojan失败(官方脚本运行出错!";
+ //****** "安装失败,官方脚本运行出错!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorInstallSoftFail").ToString());
+ //****** "安装失败,官方脚本运行出错!" ******
+ currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorInstallSoftFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4490,7 +4615,8 @@ namespace ProxySU
}
else
{
- currentStatus = "Trojan安装成功!";
+ //****** "Trojan安装成功!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_SoftInstallSuccess").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4508,8 +4634,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- //上传配置文件
- currentStatus = "Trojan程序安装完毕,配置文件上传中......";
+ //****** "安装完毕,上传配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadSoftConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4534,7 +4660,8 @@ namespace ProxySU
File.Delete(@"config.json");
- currentStatus = "正在安装acme.sh......";
+ //****** "正在安装acme.sh......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstallAcmeSh").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4559,7 +4686,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("Install success") == true)
{
- currentStatus = "acme.sh安装成功!";
+ //****** "acme.sh安装成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_AcmeShInstallSuccess").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4568,7 +4696,8 @@ namespace ProxySU
}
else
{
- currentStatus = "acme.sh安装失败!原因未知,请向开发者提问!";
+ //****** "acme.sh安装失败!原因未知,请向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorAcmeShInstallFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4587,7 +4716,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- currentStatus = "申请域名证书......";
+ //****** "申请域名证书......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartApplyCert").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4601,7 +4731,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("Cert success") == true)
{
- currentStatus = "证书申请成功!";
+ //****** "证书申请成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ApplyCertSuccess").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4610,7 +4741,8 @@ namespace ProxySU
}
else
{
- currentStatus = "证书申请失败!原因未知,请向开发者提问!";
+ //****** "证书申请失败!原因未知,请向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ApplyCertFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4618,7 +4750,8 @@ namespace ProxySU
return;
}
- currentStatus = "安装证书到Trojan......";
+ //****** "安装证书到Trojan......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoft").ToString() + "Trojan......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4637,7 +4770,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("1") == true)
{
- currentStatus = "证书安装到Trojan,成功!";
+ //****** "证书成功安装到Trojan!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftOK").ToString() + "Trojan!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4645,7 +4779,10 @@ namespace ProxySU
}
else
{
- currentStatus = "证书安装到Trojan-go失败,原因未知,可以向开发者提问!";
+ //****** "证书安装到Trojan失败,原因未知,可以向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IntallCertToSoftFail").ToString() +
+ "Trojan" +
+ Application.Current.FindResource("DisplayInstallInfo_InstallCertFailAsk").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4658,8 +4795,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
- currentStatus = "正在安装Caddy";
+ //****** "安装Caddy......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstallCaddy").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4748,9 +4885,10 @@ namespace ProxySU
if (!installResult.Contains("/usr/bin/caddy"))
{
- MessageBox.Show("安装Caddy失败!");
-
- currentStatus = "安装Caddy失败!";
+ //****** "安装Caddy失败!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_ErrorInstallCaddyFail").ToString());
+ //****** "安装Caddy失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorInstallCaddyFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4759,7 +4897,8 @@ namespace ProxySU
return;
}
- currentStatus = "Caddy安装成功!";
+ //****** "Caddy安装成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstalledCaddyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4770,8 +4909,9 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, sshShellCommand);//显示执行的命令
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
- currentStatus = "上传Caddy配置文件......";
+
+ //****** "上传Caddy配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4805,14 +4945,16 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "Caddy配置文件上传成功,OK!";
+ //****** "Caddy配置文件上传成功,OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
-
- currentStatus = "正在启动Caddy......";
+
+ //****** "正在启动Caddy......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyService").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4833,8 +4975,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- //运行成功
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4843,13 +4985,15 @@ namespace ProxySU
}
else
{
- //运行失败
- currentStatus = "Caddy启动失败!";
+ //****** "Caddy启动失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- currentStatus = "正在启动Caddy(第二次尝试)!";
+
+ //****** "正在启动Caddy(第二次尝试)!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecond").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4867,7 +5011,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4876,23 +5021,27 @@ namespace ProxySU
}
else
{
- currentStatus = "Caddy启动失败(第二次)!退出安装!";
+ //****** "Caddy启动失败(第二次)!退出安装!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("Caddy启动失败,原因未知!请向开发者问询!");
+
+ //****** "Caddy启动失败,原因未知!请向开发者问询!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_CaddyServiceFailedExit").ToString());
return;
}
}
- currentStatus = "正在启动Trojan......";
+ //****** "正在启动Trojan......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoft").ToString() + "Trojan......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- //启动Trojan-go服务
+ //启动Trojan服务
sshShellCommand = @"systemctl restart trojan";
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, sshShellCommand);//显示执行的命令
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
@@ -4906,7 +5055,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("/usr/local/bin/trojan") == true)
{
- currentStatus = "Trojan启动成功!";
+ //****** "Trojan启动成功!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4915,14 +5065,15 @@ namespace ProxySU
}
else
{
-
- //运行失败
- currentStatus = "Trojan启动失败!";
+ //****** "Trojan启动失败!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(3000);
- currentStatus = "正在启动Trojan(第二次尝试)!";
+
+ //****** "正在第二次尝试启动Trojan-go!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartSoftSecond").ToString() + "Trojan!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4940,7 +5091,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("usr/local/bin/trojan-go") == true)
{
- currentStatus = "Trojan启动成功!";
+ //****** "Trojan启动成功!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_StartSoftOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4949,19 +5101,23 @@ namespace ProxySU
}
else
{
- currentStatus = "Trojan启动失败(第二次)!退出安装!";
+ //****** "Trojan启动失败(第二次)!退出安装!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_StartSoftSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("Trojan启动失败,原因未知!请向开发者问询!");
+
+ //****** "Trojan启动失败,原因未知!请向开发者问询!" ******
+ MessageBox.Show("Trojan" + Application.Current.FindResource("DisplayInstallInfo_StartSoftFailedExit").ToString());
return;
}
}
- //测试BBR条件,若满足提示是否启用
- currentStatus = "BBR测试......";
+ //测试BBR条件,若满足则启用
+ //****** "BBR测试......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -4985,7 +5141,8 @@ namespace ProxySU
//如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
if (detectResult == true && resultCmdTestBBR.Contains("bbr") == false)
{
- currentStatus = "正在启用BBR......";
+ //****** "正在启用BBR......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5010,7 +5167,8 @@ namespace ProxySU
}
else if (resultCmdTestBBR.Contains("bbr") == true)
{
- currentStatus = "BBR已经启用了!";
+ //****** "BBR已经启用了!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRisEnabled").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5018,17 +5176,17 @@ namespace ProxySU
}
else
{
- currentStatus = "系统不满足启用BBR的条件,启用失败!";
+ //****** "系统不满足启用BBR的条件,启用失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRFailed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
client.Disconnect();//断开服务器ssh连接
-
- //生成客户端配置
- currentStatus = "生成客户端配置......";
+ //****** "生成客户端配置......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateClientConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5054,7 +5212,8 @@ namespace ProxySU
}
}
- currentStatus = "Trojan安装成功,祝你玩的愉快!!";
+ //****** "Trojan安装成功,祝你玩的愉快!!" ******
+ currentStatus = "Trojan" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5091,7 +5250,8 @@ namespace ProxySU
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
@@ -5103,8 +5263,8 @@ namespace ProxySU
//升级Trojan主程序
private void UpdateTojan(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar)
{
- string currentStatus = "正在登录远程主机......";
- //Action updateAction = new Action(UpdateTextBlock);
+ //******"正在登录远程主机......"******
+ string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5144,15 +5304,18 @@ namespace ProxySU
client.Connect();
if (client.IsConnected == true)
{
- currentStatus = "主机登录成功";
+ //******"主机登录成功"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果在监视窗口
Thread.Sleep(1000);
}
- //检测是否运行在root权限下
- currentShellCommandResult = "检测是否运行在root权限下...";
+ //******"检测是否运行在root权限下..."******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
sshShellCommand = @"id -u";
@@ -5163,25 +5326,23 @@ namespace ProxySU
string testRootAuthority = currentShellCommandResult;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
else
{
- currentShellCommandResult = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- //string testRootAuthority = client.RunCommand(@"id -u").Result;
- //if (testRootAuthority.Equals("0\n") == false)
- //{
- // MessageBox.Show("请使用具有root权限的账户登录主机!!");
- // client.Disconnect();
- // return;
- //}
- //检测远程主机Trojan版本
- currentStatus = "检测远程主机Trojan版本......";
+
+ //******"检测系统是否已经安装Trojan-go......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "Trojan-go......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5198,9 +5359,10 @@ namespace ProxySU
if (resultCmdTestTrojanInstalled.Contains("/usr/local/bin/trojan") == false)
{
- MessageBoxResult messageBoxResult = MessageBox.Show("远程主机未安装Trojan!");
-
- currentStatus = "未安装Trojan,退出";
+ //******"退出!原因:远程主机未安装Trojan"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan!");
+ //******"退出!原因:远程主机未安装Trojan"******
+ currentStatus = Application.Current.FindResource("MessageBoxShow_ErrorUpgradeSoftNotInstall").ToString() + "Trojan!";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5233,18 +5395,27 @@ namespace ProxySU
if (trojanNewVersion.Equals(trojanCurrentVersion) == false)
{
- MessageBoxResult messageBoxResult = MessageBox.Show($"远程主机当前版本为:v{trojanCurrentVersion}\n最新版本为:{trojanNewVersion}\n是否升级为最新版本?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+ MessageBoxResult messageBoxResult = MessageBox.Show(
+ //****** "远程主机当前版本为:v" ******
+ Application.Current.FindResource("DisplayInstallInfo_CurrentVersion").ToString() +
+ $"{trojanCurrentVersion}\n" +
+ //****** "最新版本为:" ******
+ Application.Current.FindResource("DisplayInstallInfo_NewVersion").ToString() +
+ $"{trojanNewVersion}\n" +
+ //****** "是否升级为最新版本?" ******
+ Application.Current.FindResource("DisplayInstallInfo_IsOrNoUpgradeNewVersion").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.Yes)
{
- currentStatus = "正在升级Trojan到最新版本......";
+ //****** "正在升级到最新版本......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartUpgradeNewVersion").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- //备份配置文件
- currentStatus = "备份Trojan配置文件......";
+ //****** "备份Trojan配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BackTrojanConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5279,8 +5450,8 @@ namespace ProxySU
//trojanCurrentVersion = client.RunCommand(sshcmd).Result;//不含字母v
if (trojanNewVersion.Equals(trojanCurrentVersion) == true)
{
- //恢复原来的配置文件备份
- currentStatus = "恢复Trojan配置文件......";
+ //****** "恢复Trojan配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_RestoreTrojanConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5299,8 +5470,10 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- MessageBox.Show($"升级成功!!\n当前版本为:v{trojanCurrentVersion}\n最新版本为:{trojanNewVersion}");
- currentStatus = "升级成功!当前已是最新版本!";
+ //****** "升级成功!当前已是最新版本!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionOK").ToString());
+ //****** "升级成功!当前已是最新版本!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5309,8 +5482,10 @@ namespace ProxySU
}
else
{
- MessageBox.Show("升级失败,原因未知,请向开发者提问,以寻求支持!");
- currentStatus = "升级失败!";
+ //****** "升级失败,原因未知,请向开发者提问!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionFail").ToString());
+ //****** "升级失败,原因未知,请向开发者提问!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNewVersionFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5321,7 +5496,8 @@ namespace ProxySU
else
{
- currentStatus = "升级取消,退出";
+ //****** "升级取消,退出!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeVersionCancel").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5333,8 +5509,12 @@ namespace ProxySU
}
else
{
- MessageBox.Show($"远程主机当前已是最新版本:{trojanNewVersion}\n无需升级!");
- currentStatus = "已是最新版本,无需升级,退出";
+ //****** "远程主机当前已是最新版本:" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_IsNewVersion").ToString() +
+ $"{trojanNewVersion}\n" +
+ //****** "无需升级!退出!" ******
+ Application.Current.FindResource("DisplayInstallInfo_NotUpgradeVersion").ToString();
+ MessageBox.Show(currentStatus);
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5375,14 +5555,16 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxNaiveHostDomain.Text) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
string serverConfig = "TemplateConfg\\Naiveproxy_server_config.json"; //服务端配置文件
@@ -5417,8 +5599,8 @@ namespace ProxySU
//登录远程主机布署NaiveProxy程序
private void StartSetUpNaive(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar, string serverConfig, string clientConfig, string upLoadPath)
{
- string currentStatus = "正在登录远程主机......";
- //Action updateAction = new Action(UpdateTextBlock);
+ //******"正在登录远程主机......"******
+ string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5458,15 +5640,17 @@ namespace ProxySU
client.Connect();
if (client.IsConnected == true)
{
- currentStatus = "主机登录成功!";
+ //******"主机登录成功"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果在监视窗口
Thread.Sleep(1000);
}
- //检测是否运行在root权限下
- currentStatus = "检测是否运行在root权限下...";
+
+ //******"检测是否运行在root权限下..."******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5479,20 +5663,22 @@ namespace ProxySU
string testRootAuthority = currentShellCommandResult;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
else
{
- currentStatus = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- //检测是否安装有NaiveProxy
- currentStatus = "检测系统是否已经安装Caddy......";
+ //******"检测系统是否已经安装Caddy......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestExistSoft").ToString() + "Caddy......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5506,10 +5692,11 @@ namespace ProxySU
string resultCmdTestTrojanInstalled = currentShellCommandResult;
if (resultCmdTestTrojanInstalled.Contains("/usr/bin/caddy") == true)
{
- MessageBoxResult messageBoxResult = MessageBox.Show("远程主机已安装Caddy,但不确定是否支持forward proxy,是否强制重新安装?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+ //****** "远程主机已安装Caddy,但不确定是否支持forward proxy,是否强制重新安装?" ******
+ MessageBoxResult messageBoxResult = MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_ExistedCaddy").ToString(), "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.No)
{
- currentStatus = "安装取消,退出";
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstallationCanceledExit").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5520,7 +5707,8 @@ namespace ProxySU
}
else
{
- currentStatus = "请先行卸载Caddy或重装VPS系统!";
+ //****** "请先行卸载Caddy或重装VPS系统!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_RemoveCaddyOrRebuiled").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5531,16 +5719,16 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:未安装Caddy!";
+ //****** "检测结果:未安装Caddy!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_NotInstalledCaddy").ToString();
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
-
- //检测远程主机系统环境是否符合要求
- currentStatus = "检测系统是否符合安装要求......";
+ //******"检测系统是否符合安装要求......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_CheckSystemRequirements").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5556,8 +5744,10 @@ namespace ProxySU
if (resultCmd.Contains("x86_64") == false)
{
- MessageBox.Show($"请在x86_64系统中安装NaiveProxy");
- currentStatus = "系统不符合要求,安装失败!!";
+ //******"请在x86_64系统中安装Trojan" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_PleaseInstallSoftAtX64").ToString());
+ //****** "系统环境不满足要求,安装失败!!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_MissingSystemComponents").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5607,8 +5797,11 @@ namespace ProxySU
//也就是apt,dnf\yum, zypper必须安装其中之一,且必须安装Systemd的系统才能安装。
if ((getApt && getDnf && getYum && getZypper) || getSystemd)
{
- MessageBox.Show($"系统缺乏必要的安装组件如:apt||dnf||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本");
- currentStatus = "系统环境不满足要求,安装失败!!";
+ //******"系统缺乏必要的安装组件如:apt||dnf||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_MissingSystemComponents").ToString());
+
+ //******"系统环境不满足要求,安装失败!!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_MissingSystemComponents").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5619,7 +5812,8 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_SystemRequirementsOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5660,7 +5854,8 @@ namespace ProxySU
string testSELinux = currentShellCommandResult;
if (testSELinux.Contains("Enforcing") == true)
{
- currentStatus = "检测到系统启用SELinux,且工作在严格模式下,需改为宽松模式!修改中...";
+ //******"检测到系统启用SELinux,且工作在严格模式下,需改为宽松模式!修改中......"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableSELinux").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5674,7 +5869,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- currentStatus = "修改完毕!";
+ //******"修改完毕!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_SELinuxModifyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5683,7 +5879,9 @@ namespace ProxySU
}
//安装所需软件
- currentStatus = "正在安装依赖的软件......";
+
+ //****** "正在安装依赖的软件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstallRelySoft").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5698,14 +5896,14 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
- currentStatus = "安装完毕!OK!";
+ //****** "安装完毕!OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_SoftInstalledOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
- currentStatus = "正在检测域名是否解析到当前VPS的IP上......";
+ //****** "正在检测域名是否解析到当前VPS的IP上......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestDomainResolve").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5726,7 +5924,8 @@ namespace ProxySU
string resultTestDomainCmd = currentShellCommandResult;
if (String.Equals(nativeIp, resultTestDomainCmd) == true)
{
- currentStatus = "解析正确!";
+ //****** "解析正确!OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DomainResolveOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5734,18 +5933,21 @@ namespace ProxySU
}
else
{
- currentStatus = "域名未能正确解析到当前VPS的IP上!安装失败!";
+ //****** "域名未能正确解析到当前VPS的IP上!安装失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorDomainResolve").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!");
+ //****** "域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorDomainResolve").ToString());
client.Disconnect();
return;
}
- currentStatus = "正在检测端口占用情况......";
+ //****** "检测端口占用情况......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestPortUsed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5769,7 +5971,8 @@ namespace ProxySU
MessageBoxResult dialogResult = MessageBox.Show("80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?", "Stop application", MessageBoxButton.YesNo);
if (dialogResult == MessageBoxResult.No)
{
- currentStatus = "端口被占用,安装失败......";
+ //****** "端口被占用,安装失败......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ErrorPortUsedFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5779,7 +5982,8 @@ namespace ProxySU
return;
}
- currentStatus = "正在释放80/443端口......";
+ //****** "正在释放80/443端口......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ReleasePort").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5827,7 +6031,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "80/443端口释放完毕!";
+ //****** "80/443端口释放完毕!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_ReleasePortOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5836,14 +6041,16 @@ namespace ProxySU
}
else
{
- currentStatus = "检测结果:未被占用!";
+ //****** "检测结果:未被占用!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_PortNotUsed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- currentStatus = "系统环境检测完毕,符合安装要求,开始布署......";
+ //****** "系统环境检测完毕,符合安装要求,开始布署......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartInstalling").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5851,7 +6058,8 @@ namespace ProxySU
Thread.Sleep(1000);
//打开防火墙端口
- currentStatus = "开启防火墙相应端口......";
+ //****** "开启防火墙相应端口......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_OpenFireWallPort").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5893,8 +6101,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
-
- currentStatus = "正在安装Caddy......";
+ //****** "正在安装Caddy.....". ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddy").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -5989,9 +6197,10 @@ namespace ProxySU
if (!installResult.Contains("/usr/bin/caddy"))
{
- MessageBox.Show("安装Caddy失败!");
- currentStatus = "安装Caddy失败!退出";
+ //****** "安装Caddy失败!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_ErrorInstallCaddyFail").ToString());
+ //****** "安装Caddy失败!" ******
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6001,7 +6210,8 @@ namespace ProxySU
}
else
{
- currentStatus = "Caddy安装成功!";
+ //****** "Caddy安装成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_InstalledCaddyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6016,7 +6226,9 @@ namespace ProxySU
}
//使用带插件的Caddy替换
- currentStatus = "正在为NaiveProxy升级服务端!";
+ //****** "正在为NaiveProxy升级服务端!" ******
+
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNaiveProxy").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6048,13 +6260,14 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- currentStatus = "升级完毕,OK!";
+ //****** "升级完毕,OK!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UpgradeNaiveProxyOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
-
- currentStatus = "上传Caddy配置文件......";
+ //****** "上传Caddy配置文件......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6087,17 +6300,18 @@ namespace ProxySU
File.Delete(@"config.json");
- currentStatus = "Caddy配置文件上传成功......";
+ //****** Caddy配置文件上传成功,OK! ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_UploadCaddyConfigOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- currentStatus = "设置Caddy自启配置文件......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- currentShellCommandResult = currentStatus;
- TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
+ //currentStatus = "设置Caddy自启配置文件......";
+ //textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ //currentShellCommandResult = currentStatus;
+ //TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
sshShellCommand = @"sed -i 's/Caddyfile/config.json/' /lib/systemd/system/caddy.service";
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, sshShellCommand);//显示执行的命令
@@ -6109,7 +6323,8 @@ namespace ProxySU
currentShellCommandResult = client.RunCommand(sshShellCommand).Result;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
- currentStatus = "设置完毕,正在启动Caddy......";
+ //****** 正在启动Caddy...... ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyService").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6129,8 +6344,8 @@ namespace ProxySU
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- //运行成功
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6139,13 +6354,15 @@ namespace ProxySU
}
else
{
- //运行失败
- currentStatus = "Caddy启动失败!";
+ //****** "Caddy启动失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- currentStatus = "正在启动Caddy(第二次尝试)!";
+
+ //****** "正在启动Caddy(第二次尝试)!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecond").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6163,7 +6380,8 @@ namespace ProxySU
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
if (currentShellCommandResult.Contains("/usr/bin/caddy") == true)
{
- currentStatus = "Caddy启动成功!";
+ //****** "Caddy启动成功!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6172,17 +6390,19 @@ namespace ProxySU
}
else
{
- currentStatus = "Caddy启动失败(第二次)!退出安装!";
+ //****** "Caddy启动失败(第二次)!退出安装!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_StartCaddyServiceSecondFail").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
Thread.Sleep(1000);
- MessageBox.Show("Caddy启动失败,原因未知!请向开发者问询!");
+ //****** "Caddy启动失败,原因未知!请向开发者问询!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_CaddyServiceFailedExit").ToString());
return;
}
}
-
+
////设置伪装网站
//if (String.IsNullOrEmpty(ReceiveConfigurationParameters[7]) == false)
//{
@@ -6192,7 +6412,8 @@ namespace ProxySU
//}
//Thread.Sleep(2000);
- currentStatus = "正在优化网络参数......";
+ //****** "正在优化网络参数......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_OptimizeNetwork").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6303,8 +6524,9 @@ namespace ProxySU
Thread.Sleep(1000);
- //测试BBR条件,若满足提示是否启用
- currentStatus = "BBR测试......";
+ //测试BBR条件,若满足则启用
+ //****** "BBR测试......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6327,7 +6549,8 @@ namespace ProxySU
//如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
if (detectResult == true && resultCmdTestBBR.Contains("bbr") == false)
{
- currentStatus = "正在启用BBR......";
+ //****** "正在启用BBR......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6352,7 +6575,8 @@ namespace ProxySU
}
else if(resultCmdTestBBR.Contains("bbr") == true)
{
- currentStatus = "BBR已经启用了!";
+ //****** "BBR已经启用了!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRisEnabled").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6360,15 +6584,16 @@ namespace ProxySU
}
else
{
- currentStatus = "系统不满足启用BBR的条件,启用失败!";
+ //****** "系统不满足启用BBR的条件,启用失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRFailed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- //生成客户端配置
- currentStatus = "生成客户端配置......";
+ //****** "生成客户端配置......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateClientConfig").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6391,7 +6616,8 @@ namespace ProxySU
}
client.Disconnect();
- currentStatus = "NaiveProxy安装成功!祝你玩的愉快!!";
+ //****** "NaiveProxy安装成功,祝你玩的愉快!!" ******
+ currentStatus = "NaiveProxy" + Application.Current.FindResource("DisplayInstallInfo_ProxyInstalledOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6464,12 +6690,9 @@ namespace ProxySU
using (var sftpClient = new SftpClient(connectionInfo))
{
sftpClient.Connect();
- //MessageBox.Show("sftp信息1" + sftpClient.ConnectionInfo.ServerVersion.ToString());
- //sftpClient.UploadFile(File.OpenRead("TemplateConfg\tcp_server_config.json"), "/etc/v2ray/config.json", true);
FileStream openUploadConfigFile = File.OpenRead(uploadConfig);
sftpClient.UploadFile(openUploadConfigFile, upLoadPath, true);
openUploadConfigFile.Close();
- //MessageBox.Show("sftp信息" + sftpClient.ConnectionInfo.ServerVersion.ToString());
sftpClient.Disconnect();
}
@@ -6477,7 +6700,7 @@ namespace ProxySU
catch (Exception ex2)
{
MessageBox.Show("sftp" + ex2.ToString());
- MessageBox.Show("sftp出现未知错误,上传文件失败,请重试!");
+ //MessageBox.Show("sftp出现未知错误,上传文件失败,请重试!");
return;
}
}
@@ -6490,11 +6713,10 @@ namespace ProxySU
using (var sftpClient = new SftpClient(connectionInfo))
{
sftpClient.Connect();
- //MessageBox.Show("sftp信息1" + sftpClient.ConnectionInfo.ServerVersion.ToString());
FileStream createDownloadConfig = File.Open(downloadConfig, FileMode.Create);
sftpClient.DownloadFile(downloadPath, createDownloadConfig);
createDownloadConfig.Close();
- //MessageBox.Show("sftp信息" + sftpClient.ConnectionInfo.ServerVersion.ToString());
+
sftpClient.Disconnect();
}
@@ -6502,7 +6724,7 @@ namespace ProxySU
catch (Exception ex2)
{
MessageBox.Show("sftp" + ex2.ToString());
- MessageBox.Show("sftp出现未知错误,下载文件失败,请重试!");
+ //MessageBox.Show("sftp出现未知错误,下载文件失败,请重试!");
return;
}
}
@@ -6513,12 +6735,12 @@ namespace ProxySU
{
textBlockName.Text = currentStatus;
- if (currentStatus.Contains("成功") == true)
+ if (currentStatus.Contains("成功") == true || currentStatus.ToLower().Contains("success") == true)
{
progressBar.IsIndeterminate = false;
progressBar.Value = 100;
}
- else if (currentStatus.Contains("失败") == true || currentStatus.Contains("取消") == true || currentStatus.Contains("退出") == true)
+ else if (currentStatus.Contains("失败") == true || currentStatus.Contains("取消") == true || currentStatus.Contains("退出") == true || currentStatus.ToLower().Contains("fail") == true || currentStatus.ToLower().Contains("cancel") == true || currentStatus.ToLower().Contains("exit") == true)
{
progressBar.IsIndeterminate = false;
progressBar.Value = 0;
@@ -6592,7 +6814,8 @@ namespace ProxySU
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
@@ -6605,7 +6828,8 @@ namespace ProxySU
//释放80/443端口
private void ButtonClearOccupiedPorts_Click(object sender, RoutedEventArgs e)
{
- MessageBoxResult dialogResult = MessageBox.Show("将强制停止占用80/443端口的程序?", "Stop application", MessageBoxButton.YesNo);
+ //****** "80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?" ******
+ MessageBoxResult dialogResult = MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorPortUsed").ToString(), "Stop application", MessageBoxButton.YesNo);
if (dialogResult == MessageBoxResult.No)
{
return;
@@ -6622,7 +6846,8 @@ namespace ProxySU
string testRootAuthority = client.RunCommand(@"id -u").Result;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
@@ -6649,7 +6874,8 @@ namespace ProxySU
client.RunCommand($"systemctl disable {cmdResultArry80[0]}");
client.RunCommand($"kill -9 {cmdResultArry80[3]}");
}
- MessageBox.Show("释放完毕!");
+ //****** "80/443端口释放完毕!" ******
+ MessageBox.Show(Application.Current.FindResource("DisplayInstallInfo_ReleasePortOK").ToString());
client.Disconnect();
}
}
@@ -6665,7 +6891,8 @@ namespace ProxySU
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
- MessageBox.Show("远程主机连接信息有误,请检查");
+ //****** "远程主机连接信息有误,请检查!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
@@ -6676,7 +6903,8 @@ namespace ProxySU
//启用BBR的主要进程
private void StartTestAndEnableBBR(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar)
{
- string currentStatus = "正在登录远程主机......";
+ //******"正在登录远程主机......"******
+ string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6716,14 +6944,16 @@ namespace ProxySU
client.Connect();
if (client.IsConnected == true)
{
- currentStatus = "主机登录成功";
+ //******"主机登录成功"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果在监视窗口
Thread.Sleep(1000);
}
- //检测是否运行在root权限下
- currentStatus = "检测是否运行在root权限下...";
+
+ //******"检测是否运行在root权限下..."******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6736,20 +6966,22 @@ namespace ProxySU
string testRootAuthority = currentShellCommandResult;
if (testRootAuthority.Equals("0\n") == false)
{
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ //******"请使用具有root权限的账户登录主机!!"******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorRootPermission").ToString());
client.Disconnect();
return;
}
else
{
- currentStatus = "检测结果:OK!";
+ //******"检测结果:OK!"******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootOK").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
}
- //检测远程主机系统环境是否符合要求
- currentStatus = "检测系统内核版本是否符合要求......";
+ //****** "BBR测试......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_TestBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6773,7 +7005,8 @@ namespace ProxySU
//如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
if (detectResultBBR == true && resultCmdTestBBR.Contains("bbr") == false)
{
- currentStatus = "正在启用BBR......";
+ //****** "正在启用BBR......" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableBBR").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6798,7 +7031,8 @@ namespace ProxySU
}
else if (resultCmdTestBBR.Contains("bbr") == true)
{
- currentStatus = "BBR已经启用了!";
+ //****** "BBR已经启用了!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRisEnabled").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6806,7 +7040,8 @@ namespace ProxySU
}
else
{
- currentStatus = "系统不满足启用BBR的条件,启用失败!";
+ //****** "系统不满足启用BBR的条件,启用失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_BBRFailed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6820,34 +7055,10 @@ namespace ProxySU
catch (Exception ex1)//例外处理
#region 例外处理
{
- //MessageBox.Show(ex1.Message);
- if (ex1.Message.Contains("连接尝试失败") == true)
- {
- MessageBox.Show($"{ex1.Message}\n请检查主机地址及端口是否正确,如果通过代理,请检查代理是否正常工作");
- }
+ ProcessException(ex1.Message);
- else if (ex1.Message.Contains("denied (password)") == true)
- {
- MessageBox.Show($"{ex1.Message}\n密码错误或用户名错误");
- }
- else if (ex1.Message.Contains("Invalid private key file") == true)
- {
- MessageBox.Show($"{ex1.Message}\n所选密钥文件错误或者格式不对");
- }
- else if (ex1.Message.Contains("denied (publickey)") == true)
- {
- MessageBox.Show($"{ex1.Message}\n使用密钥登录,密钥文件错误或用户名错误");
- }
- else if (ex1.Message.Contains("目标计算机积极拒绝") == true)
- {
- MessageBox.Show($"{ex1.Message}\n主机地址错误,如果使用了代理,也可能是连接代理的端口错误");
- }
- else
- {
- MessageBox.Show("发生错误");
- MessageBox.Show(ex1.Message);
- }
- currentStatus = "主机登录失败";
+ //****** "主机登录失败!" ******
+ currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginFailed").ToString();
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
currentShellCommandResult = currentStatus;
TextBoxMonitorCommandResults.Dispatcher.BeginInvoke(updateMonitorAction, TextBoxMonitorCommandResults, currentShellCommandResult);//显示命令执行的结果
@@ -6921,997 +7132,995 @@ namespace ProxySU
MessageBox.Show(ex.Message);
}
}
- #endregion
-
- #region 三合一安装过程
-
- //生成三合一的v2ray路径
- private void ButtonV2rayPath3in1_Click(object sender, RoutedEventArgs e)
- {
- string path = RandomUserName();
- TextBoxV2rayPath3in1.Text = $"/{path}";
- }
-
- //生成三合一Trojan密码
- private void ButtonTrojanPassword3in1_Click(object sender, RoutedEventArgs e)
- {
- TextBoxTrojanPassword3in1.Text = RandomUUID();
- }
-
- //生成三合一V2ray的UUID
- private void ButtonV2rayUUID3in1_Click(object sender, RoutedEventArgs e)
- {
- TextBoxV2rayUUID3in1.Text = RandomUUID();
- }
-
- //生成三合一中Naive的用户名
- private void ButtonNaiveUser3in1_Click(object sender, RoutedEventArgs e)
- {
- TextBoxNaiveUser3in1.Text = RandomUserName();
- }
-
- //生成三合一中Naive的密码
- private void ButtonNaivePassword3in1_Click(object sender, RoutedEventArgs e)
- {
- TextBoxNaivePassword3in1.Text = RandomUUID();
- }
-
- //启用三合一安装运行
- private void Button_Login3in1_Click(object sender, RoutedEventArgs e)
- {
- if (string.IsNullOrEmpty(TextBoxDomain3in1.Text) == true)
- {
- MessageBox.Show("域名不能为空!");
- return;
- }
- //ReceiveConfigurationParameters[0]----模板类型
- //ReceiveConfigurationParameters[1]----Trojan的密码
- //ReceiveConfigurationParameters[2]----v2ray的uuid
- //ReceiveConfigurationParameters[3]----v2ray的path
- //ReceiveConfigurationParameters[4]----domain
- //ReceiveConfigurationParameters[5]----Naive的用户名
- //ReceiveConfigurationParameters[6]----Naive的密码
- //ReceiveConfigurationParameters[7]----伪装网站
- ConnectionInfo connectionInfo = GenerateConnectionInfo();
- if (connectionInfo == null)
- {
- MessageBox.Show("远程主机连接信息有误,请检查");
- return;
- }
- string serverConfig = ""; //服务端配置文件
- string clientConfig = ""; //生成的客户端配置文件
- string upLoadPath = ""; //服务端文件位置
- //传递参数
- ReceiveConfigurationParameters[4] = TextBoxDomain3in1.Text;//传递域名
- ReceiveConfigurationParameters[7] = TextBoxSites3in1.Text;//传递伪装网站
- ReceiveConfigurationParameters[2] = TextBoxV2rayUUID3in1.Text;//v2ray的uuid
- ReceiveConfigurationParameters[3] = TextBoxV2rayPath3in1.Text;//v2ray的path
- ReceiveConfigurationParameters[1] = TextBoxTrojanPassword3in1.Text;//Trojan的密码
- ReceiveConfigurationParameters[5] = TextBoxNaiveUser3in1.Text;//Naive的用户名
- ReceiveConfigurationParameters[6] = TextBoxNaivePassword3in1.Text;//Naive的密码
- if (TextBoxSites3in1.Text.ToString().Length >= 7)
- {
- string testDomain = TextBoxSites3in1.Text.Substring(0, 7);
- if (String.Equals(testDomain, "https:/") || String.Equals(testDomain, "http://"))
- {
- //MessageBox.Show(testDomain);
- ReceiveConfigurationParameters[7] = TextBoxSites3in1.Text.Replace("/", "\\/");
- }
- else
- {
- ReceiveConfigurationParameters[7] = "http:\\/\\/" + TextBoxSites3in1.Text;
- }
- }
-
- //Thread thread
- Thread thread = new Thread(() => StartSetUp3in1(connectionInfo, TextBlockSetUpProcessing, ProgressBarSetUpProcessing, serverConfig, clientConfig, upLoadPath));
- thread.SetApartmentState(ApartmentState.STA);
- thread.Start();
- }
-
- //登录远程主机布署三合一程序
- private void StartSetUp3in1(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar, string serverConfig, string clientConfig, string upLoadPath)
- {
- string currentStatus = "正在登录远程主机......";
-
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, 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)
- {
- currentStatus = "主机登录成功";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
- //检测是否运行在root权限下
- string testRootAuthority = client.RunCommand(@"id -u").Result;
- if (testRootAuthority.Equals("0\n") == false)
- {
- MessageBox.Show("请使用具有root权限的账户登录主机!!");
- client.Disconnect();
- return;
- }
- //检测是否安装有V2ray
- currentStatus = "检测系统是否已经安装 V2ray or Trojan or NaiveProxy......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- string cmdTestV2rayInstalled = @"find / -name v2ray";
- string resultCmdTestV2rayInstalled = client.RunCommand(cmdTestV2rayInstalled).Result;
- string cmdTestTrojanInstalled = @"find / -name trojan";
- string resultCmdTestTrojanInstall = client.RunCommand(cmdTestTrojanInstalled).Result;
- string cmdTestNaiveInstalled = @"find / -name naive";
- string resultcmdTestNaiveInstalled = client.RunCommand(cmdTestNaiveInstalled).Result;
- if (resultCmdTestV2rayInstalled.Contains("/usr/bin/v2ray") == true || resultCmdTestTrojanInstall.Contains("/usr/local/bin/trojan") == true || resultcmdTestNaiveInstalled.Contains("/usr/local/bin/naive") == true)
- {
- MessageBoxResult messageBoxResult = MessageBox.Show("远程主机已安装V2ray or Trojan or NaiveProxy,是否强制重新安装?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
- if (messageBoxResult == MessageBoxResult.No)
- {
- currentStatus = "安装取消,退出";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- client.Disconnect();
- return;
- }
- }
-
- //检测远程主机系统环境是否符合要求
- currentStatus = "检测系统是否符合安装要求......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- string result = client.RunCommand("uname -r").Result;
-
- string[] linuxKernelVerStr = result.Split('-');
-
- bool detectResult = DetectKernelVersion(linuxKernelVerStr[0]);
- if (detectResult == false)
- {
- MessageBox.Show($"当前系统内核版本为{linuxKernelVerStr[0]},V2ray要求内核为2.6.23及以上。请升级内核再安装!");
- currentStatus = "系统内核版本不符合要求,安装失败!!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
- result = client.RunCommand("uname -m").Result;
-
- if (result.Contains("x86_64") == false)
- {
- MessageBox.Show($"请在x86_64系统中安装Trojan/NaivProxy");
- currentStatus = "系统不符合要求,安装失败!!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
- //检测系统是否支持yum 或 apt-get或zypper,且支持Systemd
- //如果不存在组件,则命令结果为空,string.IsNullOrEmpty值为真,
- bool getApt = String.IsNullOrEmpty(client.RunCommand("command -v apt-get").Result);
- bool getYum = String.IsNullOrEmpty(client.RunCommand("command -v yum").Result);
- bool getZypper = String.IsNullOrEmpty(client.RunCommand("command -v zypper").Result);
- bool getSystemd = String.IsNullOrEmpty(client.RunCommand("command -v systemctl").Result);
- bool getGetenforce = String.IsNullOrEmpty(client.RunCommand("command -v getenforce").Result);
-
- //没有安装apt-get,也没有安装yum,也没有安装zypper,或者没有安装systemd的,不满足安装条件
- //也就是apt-get ,yum, zypper必须安装其中之一,且必须安装Systemd的系统才能安装。
- if ((getApt && getYum && getZypper) || getSystemd)
- {
- MessageBox.Show($"系统缺乏必要的安装组件如:apt-get||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本");
- currentStatus = "系统环境不满足要求,安装失败!!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- client.Disconnect();
- return;
- }
- //判断是否启用了SELinux,如果启用了,并且工作在Enforcing模式下,则改为Permissive模式
- if (getGetenforce == false)
- {
- string testSELinux = client.RunCommand("getenforce").Result;
- if (testSELinux.Contains("Enforcing") == true)
- {
- client.RunCommand("setenforce 0");//不重启改为Permissive模式
- client.RunCommand("sed -i 's/SELINUX=enforcing/SELINUX=permissive/' /etc/selinux/config");//重启也工作在Permissive模式下
- }
-
- }
-
- //校对时间
- currentStatus = "校对时间......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- //获取远程主机的时间戳
- long timeStampVPS = Convert.ToInt64(client.RunCommand("date +%s").Result.ToString());
-
- //获取本地时间戳
- TimeSpan ts = DateTime.Now.ToUniversalTime() - new DateTime(1970, 1, 1, 0, 0, 0, 0);
- long timeStampLocal = Convert.ToInt64(ts.TotalSeconds);
- if (Math.Abs(timeStampLocal - timeStampVPS) >= 90)
- {
-
- MessageBox.Show("本地时间与远程主机时间相差超过限制(90秒),请先用\"系统工具-->时间校对\"校对时间后再设置");
- currentStatus = "时间较对失败......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- client.Disconnect();
- return;
- }
-
- currentStatus = "正在检测域名是否解析到当前VPS的IP上......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //在相应系统内安装curl(如果没有安装curl)
- if (string.IsNullOrEmpty(client.RunCommand("command -v curl").Result) == true)
- {
- //为假则表示系统有相应的组件。
- if (getApt == false)
- {
- client.RunCommand("apt-get -qq update");
- client.RunCommand("apt-get -y -qq install curl");
- }
- if (getYum == false)
- {
- client.RunCommand("yum -q makecache");
- client.RunCommand("yum -y -q install curl");
- }
- if (getZypper == false)
- {
- client.RunCommand("zypper ref");
- client.RunCommand("zypper -y install curl");
- }
- }
-
- string vpsIp3in1 = client.RunCommand("curl -4 ip.sb").Result.ToString();
- string testDomainCmd = "ping " + ReceiveConfigurationParameters[4] + " -c 1 | grep -oE -m1 \"([0-9]{1,3}\\.){3}[0-9]{1,3}\"";
- string resulttestDomainCmd = client.RunCommand(testDomainCmd).Result.ToString();
-
- if (String.Equals(vpsIp3in1, resulttestDomainCmd) == true)
- {
- currentStatus = "解析正确!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
- else
- {
- currentStatus = "域名未能正确解析到当前VPS的IP上!安装失败!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- MessageBox.Show("域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!");
- client.Disconnect();
- return;
- }
-
- //检测是否安装lsof
- if (string.IsNullOrEmpty(client.RunCommand("command -v lsof").Result) == true)
- {
- //为假则表示系统有相应的组件。
- if (getApt == false)
- {
- client.RunCommand("apt-get -qq update");
- client.RunCommand("apt-get -y -qq install lsof");
- }
- if (getYum == false)
- {
- client.RunCommand("yum -q makecache");
- client.RunCommand("yum -y -q install lsof");
- }
- if (getZypper == false)
- {
- client.RunCommand("zypper ref");
- client.RunCommand("zypper -y install lsof");
- }
- }
- currentStatus = "正在检测端口占用情况......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- if (String.IsNullOrEmpty(client.RunCommand(@"lsof -n -P -i :80 | grep LISTEN").Result) == false || String.IsNullOrEmpty(client.RunCommand(@"lsof -n -P -i :443 | grep LISTEN").Result) == false)
- {
- //MessageBox.Show("80/443端口之一,或全部被占用,请先用系统工具中的“释放80/443端口”工具,释放出,再重新安装");
- MessageBoxResult dialogResult = MessageBox.Show("80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?", "Stop application", MessageBoxButton.YesNo);
- if (dialogResult == MessageBoxResult.No)
- {
- currentStatus = "端口被占用,安装失败......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- client.Disconnect();
- return;
- }
-
- currentStatus = "正在释放80/443端口......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- string cmdTestPort = @"lsof -n -P -i :443 | grep LISTEN";
- string cmdResult = client.RunCommand(cmdTestPort).Result;
- if (String.IsNullOrEmpty(cmdResult) == false)
- {
- string[] cmdResultArry443 = cmdResult.Split(' ');
- client.RunCommand($"systemctl stop {cmdResultArry443[0]}");
- client.RunCommand($"systemctl disable {cmdResultArry443[0]}");
- client.RunCommand($"kill -9 {cmdResultArry443[3]}");
- }
-
- cmdTestPort = @"lsof -n -P -i :80 | grep LISTEN";
- cmdResult = client.RunCommand(cmdTestPort).Result;
- if (String.IsNullOrEmpty(cmdResult) == false)
- {
- string[] cmdResultArry80 = cmdResult.Split(' ');
- client.RunCommand($"systemctl stop {cmdResultArry80[0]}");
- client.RunCommand($"systemctl disable {cmdResultArry80[0]}");
- client.RunCommand($"kill -9 {cmdResultArry80[3]}");
- }
- currentStatus = "80/443端口释放完毕!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- }
-
- //打开防火墙端口
-
- if (String.IsNullOrEmpty(client.RunCommand("command -v firewall-cmd").Result) == false)
- {
- client.RunCommand("firewall-cmd --zone=public --add-port=80/tcp --permanent");
- client.RunCommand("firewall-cmd --zone=public --add-port=443/tcp --permanent");
- client.RunCommand("firewall-cmd --reload");
-
- }
- if (String.IsNullOrEmpty(client.RunCommand("command -v ufw").Result) == false)
- {
-
- client.RunCommand("ufw allow 80");
- client.RunCommand("ufw allow 443");
- client.RunCommand("yes | ufw reload");
- }
-
- currentStatus = "符合安装要求,V2ray安装中......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //下载官方安装脚本安装V2ray
- client.RunCommand("curl -o /tmp/go.sh https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh");
- client.RunCommand("yes | bash /tmp/go.sh -f");
- string installResult = client.RunCommand("find / -name v2ray").Result.ToString();
-
- if (!installResult.Contains("/usr/local/bin/v2ray"))
- {
- MessageBox.Show("安装V2ray失败(官方脚本运行出错!");
-
- currentStatus = "安装V2ray失败(官方脚本运行出错!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- client.Disconnect();
- return;
- }
- //client.RunCommand("mv /etc/v2ray/config.json /etc/v2ray/config.json.1");
-
- //上传配置文件
- currentStatus = "V2ray程序安装完毕,配置文件上传中......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //生成服务端配置
- serverConfig = @"TemplateConfg\WebSocketTLSWeb_server_config.json";
- using (StreamReader reader = File.OpenText(serverConfig))
- {
- JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
- //设置uuid
- serverJson["inbounds"][0]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2];
- //设置路径
- serverJson["inbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3];
-
- using (StreamWriter sw = new StreamWriter(@"config.json"))
- {
- sw.Write(serverJson.ToString());
- }
- }
- upLoadPath = "usr/local/etc/v2ray/config.json";
- UploadConfig(connectionInfo, @"config.json", upLoadPath);
- File.Delete(@"config.json");
-
- client.RunCommand("systemctl restart v2ray");
- currentStatus = "启动V2ray,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //安装Trojan
- currentStatus = "开始安装Trojan......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //下载官方安装脚本安装
-
- client.RunCommand("curl -o /tmp/trojan-quickstart.sh https://raw.githubusercontent.com/trojan-gfw/trojan-quickstart/master/trojan-quickstart.sh");
- client.RunCommand("yes | bash /tmp/trojan-quickstart.sh");
-
- installResult = client.RunCommand("find / -name trojan").Result.ToString();
-
- if (!installResult.Contains("/usr/local/bin/trojan"))
- {
- MessageBox.Show("安装Trojan失败(官方脚本运行出错!");
-
- currentStatus = "安装Trojan失败(官方脚本运行出错!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- client.Disconnect();
- return;
- }
- client.RunCommand("mv /usr/local/etc/trojan/config.json /usr/local/etc/trojan/config.json.1");
-
- //上传配置文件
- currentStatus = "Trojan程序安装完毕,配置文件上传中......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //生成服务端配置
- serverConfig = @"TemplateConfg\trojan_server_config.json";
- using (StreamReader reader = File.OpenText(serverConfig))
- {
- JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
- //设置密码
- serverJson["password"][0] = ReceiveConfigurationParameters[1];
-
- using (StreamWriter sw = new StreamWriter(@"config.json"))
- {
- sw.Write(serverJson.ToString());
- }
- }
- upLoadPath = "/usr/local/etc/trojan/config.json";
- UploadConfig(connectionInfo, @"config.json", upLoadPath);
- File.Delete(@"config.json");
-
-
- //安装NaiveProxy
- currentStatus = "开始安装NaiveProxy......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //下载安装脚本安装
-
- client.RunCommand("curl -o /tmp/naive-quickstart.sh https://raw.githubusercontent.com/proxysu/shellscript/master/naive-quickstart.sh");
- client.RunCommand("yes | bash /tmp/naive-quickstart.sh");
-
- installResult = client.RunCommand("find / -name naive").Result.ToString();
-
- if (!installResult.Contains("/usr/local/bin/naive"))
- {
- MessageBox.Show("安装NaiveProxy失败(脚本运行出错!");
- client.Disconnect();
- currentStatus = "安装NaiveProxy失败(脚本运行出错!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- client.Disconnect();
- return;
- }
-
- currentStatus = "NaiveProxy程序安装完毕......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- client.RunCommand("systemctl restart naive");
- currentStatus = "启动Naive,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
-
-
-
- currentStatus = "正在安装acme.sh......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- if (getApt == false)
- {
- //client.RunCommand("apt-get -qq update");
- client.RunCommand("apt-get -y -qq install socat");
- }
- if (getYum == false)
- {
- //client.RunCommand("yum -q makecache");
- client.RunCommand("yum -y -q install socat");
- }
- if (getZypper == false)
- {
- // client.RunCommand("zypper ref");
- client.RunCommand("zypper -y install socat");
- }
- client.RunCommand("curl https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh | INSTALLONLINE=1 sh");
- client.RunCommand("cd ~/.acme.sh/");
- client.RunCommand("alias acme.sh=~/.acme.sh/acme.sh");
-
- currentStatus = "申请域名证书......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //client.RunCommand("mkdir -p /etc/v2ray/ssl");
- client.RunCommand($"/root/.acme.sh/acme.sh --issue --standalone -d {ReceiveConfigurationParameters[4]}");
-
- currentStatus = "正在安装证书......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- client.RunCommand($"/root/.acme.sh/acme.sh --installcert -d {ReceiveConfigurationParameters[4]} --certpath /usr/local/etc/trojan/trojan_ssl.crt --keypath /usr/local/etc/trojan/trojan_ssl.key --capath /usr/local/etc/trojan/trojan_ssl.crt --reloadcmd \"systemctl restart trojan\"");
-
- currentStatus = "证书安装,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- client.RunCommand("systemctl restart trojan");
-
- currentStatus = "Trojan重启加载证书,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- currentStatus = "正在安装Caddy......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- client.RunCommand("curl https://getcaddy.com -o getcaddy");
- client.RunCommand("bash getcaddy personal http.forwardproxy,hook.service");
- client.RunCommand("mkdir -p /etc/caddy");
- client.RunCommand("mkdir -p /var/www");
-
-
- currentStatus = "上传Caddy配置文件......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- serverConfig = @"TemplateConfg\3in1_config.caddyfile";
-
- upLoadPath = "/etc/caddy/Caddyfile";
- UploadConfig(connectionInfo, serverConfig, upLoadPath);
-
- //设置邮箱
- string email = $"user@{ReceiveConfigurationParameters[4]}";
- //设置Path
- string sshCmd;
- sshCmd = $"sed -i 's/##path##/\\{ReceiveConfigurationParameters[3]}/' {upLoadPath}";
- client.RunCommand(sshCmd);
- //设置域名
- sshCmd = $"sed -i 's/##domain##/{ReceiveConfigurationParameters[4]}:80/' {upLoadPath}";
- client.RunCommand(sshCmd);
- sshCmd = $"sed -i 's/##basicauth##/basicauth {ReceiveConfigurationParameters[5]} {ReceiveConfigurationParameters[6]}/' {upLoadPath}";
- client.RunCommand(sshCmd);
- //设置伪装网站
-
- if (String.IsNullOrEmpty(ReceiveConfigurationParameters[7]) == false)
- {
- sshCmd = $"sed -i 's/##sites##/proxy \\/ {ReceiveConfigurationParameters[7]}/' {upLoadPath}";
- client.RunCommand(sshCmd);
- }
- Thread.Sleep(2000);
-
- //安装Caddy服务
- sshCmd = $"caddy -service install -agree -conf /etc/caddy/Caddyfile -email {email}";
- client.RunCommand(sshCmd);
-
- //启动Caddy服务
- client.RunCommand("caddy -service restart");
- currentStatus = "启动Caddy,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- currentStatus = "正在启用BBR......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- //测试BBR条件,若满足提示是否启用
- result = client.RunCommand("uname -r").Result;
- //var result = client.RunCommand("cat /root/test.ver");
- linuxKernelVerStr = result.Split('-');
-
- detectResult = DetectKernelVersionBBR(linuxKernelVerStr[0]);
- string resultCmdTestBBR = client.RunCommand(@"sysctl net.ipv4.tcp_congestion_control | grep bbr").Result;
- //如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
- if (detectResult == true && resultCmdTestBBR.Contains("bbr") == false)
- {
- client.RunCommand(@"bash -c 'echo ""net.core.default_qdisc=fq"" >> /etc/sysctl.conf'");
- client.RunCommand(@"bash -c 'echo ""net.ipv4.tcp_congestion_control=bbr"" >> /etc/sysctl.conf'");
- client.RunCommand(@"sysctl -p");
- }
- resultCmdTestBBR = client.RunCommand(@"sysctl net.ipv4.tcp_congestion_control | grep bbr").Result;
- if (resultCmdTestBBR.Contains("bbr") == true)
- {
- currentStatus = "启用BBR,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
- else
- {
- currentStatus = "启用BBR,未成功!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- }
-
- currentStatus = "正在优化网络参数......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- //优化网络参数
- sshCmd = @"bash -c 'echo ""fs.file-max = 51200"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.rmem_max = 67108864"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.wmem_max = 67108864"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.rmem_default = 65536"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.wmem_default = 65536"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.netdev_max_backlog = 4096"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.core.somaxconn = 4096"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_syncookies = 1"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_tw_reuse = 1"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_tw_recycle = 0"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_fin_timeout = 30"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_keepalive_time = 1200"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.ip_local_port_range = 10000 65000"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_max_syn_backlog = 4096"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_max_tw_buckets = 5000"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_rmem = 4096 87380 67108864"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_wmem = 4096 65536 67108864"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"bash -c 'echo ""net.ipv4.tcp_mtu_probing = 1"" >> /etc/sysctl.conf'";
- client.RunCommand(sshCmd);
- sshCmd = @"sysctl -p";
- client.RunCommand(sshCmd);
-
- currentStatus = "优化网络参数,OK!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //生成客户端配置
- currentStatus = "生成客户端配置......";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
- //创建3in1文件夹
- if (!Directory.Exists("3in1_config"))//如果不存在就创建file文件夹
- {
- Directory.CreateDirectory("3in1_config");//创建该文件夹
- }
- //生成v2ray官方客户端配置
- clientConfig = @"TemplateConfg\WebSocketTLSWeb_client_config.json";
- using (StreamReader reader = File.OpenText(clientConfig))
- {
- JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
-
- clientJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4];
- clientJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse("443");
- clientJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2];
-
- clientJson["outbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3];
- if (!Directory.Exists(@"3in1_config\v2ray_config"))//如果不存在就创建file文件夹
- {
- Directory.CreateDirectory(@"3in1_config\v2ray_config");//创建该文件夹
- }
- using (StreamWriter sw = new StreamWriter(@"3in1_config\v2ray_config\config.json"))
- {
- sw.Write(clientJson.ToString());
- }
- }
- //生成V2rayN的客户端
- string v2rayNjsonFile = @"
-{
- ""v"": """",
- ""ps"": """",
- ""add"": """",
- ""port"": """",
- ""id"": """",
- ""aid"": """",
- ""net"": """",
- ""type"": """",
- ""host"": """",
- ""path"": """",
- ""tls"": """"
-}";
- JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile);
- v2rayNjsonObject["v"] = "2";
- v2rayNjsonObject["add"] = ReceiveConfigurationParameters[4]; //设置域名
- v2rayNjsonObject["port"] = "443"; //设置端口
- v2rayNjsonObject["id"] = ReceiveConfigurationParameters[2]; //设置uuid
- v2rayNjsonObject["aid"] = "16"; //设置额外ID
- v2rayNjsonObject["net"] = "ws"; //设置传输模式
- v2rayNjsonObject["type"] = "none"; //设置伪装类型
- v2rayNjsonObject["path"] = ReceiveConfigurationParameters[3];//设置路径
- v2rayNjsonObject["host"] = "";//设置TLS的Host
- v2rayNjsonObject["tls"] = "tls"; //设置是否启用TLS
- v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注
-
- //如果已存在以前保存目录,则新建后缀数字依次增加
- string saveFileFolderFirst = v2rayNjsonObject["ps"].ToString();
- int num = 1;
- string saveFileFolder = saveFileFolderFirst;
- while (Directory.Exists(@"3in1_config\v2ray_config\" + saveFileFolder))
- {
- saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
- num++;
- }
- Directory.CreateDirectory(@"3in1_config\v2ray_config\" + saveFileFolder);//创建该文件夹
-
-
- //生成url和二维码
- byte[] textBytes = Encoding.UTF8.GetBytes(v2rayNjsonObject.ToString());
- string vmessUrl = "vmess://" + Convert.ToBase64String(textBytes);
-
- using (StreamWriter sw = new StreamWriter($"3in1_config\\v2ray_config\\{saveFileFolder}\\url.txt"))
- {
- sw.WriteLine(vmessUrl);
-
- }
- //生成二维码
- QRCodeGenerator qrGenerator = new QRCodeGenerator();
- QRCodeData qrCodeData = qrGenerator.CreateQrCode(vmessUrl, QRCodeGenerator.ECCLevel.Q);
- QRCode qrCode = new QRCode(qrCodeData);
- Bitmap qrCodeImage = qrCode.GetGraphic(20);
- //IntPtr myImagePtr = qrCodeImage.GetHbitmap();
- //BitmapSource imgsource = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(myImagePtr, IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
- //ImageShareQRcode.Source = imgsource;
- ////DeleteObject(myImagePtr);
- qrCodeImage.Save($"3in1_config\\v2ray_config\\{saveFileFolder}\\QR.bmp");
-
- //生成说明文件
- using (StreamWriter sw = new StreamWriter($"3in1_config\\v2ray_config\\{saveFileFolder}\\说明.txt"))
- {
- sw.WriteLine("config.json");
- sw.WriteLine("此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081");
- sw.WriteLine("v2ray官方网站:https://www.v2ray.com/");
- sw.WriteLine("v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases");
- sw.WriteLine("下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。");
- sw.WriteLine("-----------------------------------------");
- sw.WriteLine("QR.bmp");
- sw.WriteLine("此文件为v2rayN、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点");
- sw.WriteLine("v2rayN下载网址:https://github.com/2dust/v2rayN/releases");
- sw.WriteLine("v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases");
- sw.WriteLine("v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang");
- sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
-
- sw.WriteLine("-----------------------------------------");
- sw.WriteLine("url.txt");
- sw.WriteLine("此文件为v2rayN、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址");
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
- sw.WriteLine($"端口(Port):443");
- sw.WriteLine($"用户ID(uuid):{ReceiveConfigurationParameters[2]}");
- sw.WriteLine($"额外ID:16");
- sw.WriteLine($"加密方式:auto");
- sw.WriteLine($"传输协议:ws");
- sw.WriteLine($"伪装类型:none");
- sw.WriteLine($"是否使用TLS:tls");
- sw.WriteLine($"host:");
- sw.WriteLine($"路径(Path):{ReceiveConfigurationParameters[3]}");
- sw.WriteLine($"QUIC密钥:");
- }
- //移动V2ray官方配置config.json到与上述文件同一目录
- File.Move(@"3in1_config\v2ray_config\config.json", @"3in1_config\v2ray_config\" + saveFileFolder + @"\config.json");
-
- //生成Trojan客户端文件
- clientConfig = @"TemplateConfg\trojan_client_config.json";
- if (!Directory.Exists(@"3in1_config\trojan_config"))//如果不存在就创建file文件夹
- {
- Directory.CreateDirectory(@"3in1_config\trojan_config");//创建该文件夹
- }
- using (StreamReader reader = File.OpenText(clientConfig))
- {
- JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
-
- clientJson["remote_addr"] = ReceiveConfigurationParameters[4];
- //clientJson["remote_port"] = int.Parse(ReceiveConfigurationParameters[1]);
- clientJson["password"][0] = ReceiveConfigurationParameters[1];
-
- using (StreamWriter sw = new StreamWriter(@"3in1_config\trojan_config\config.json"))
- {
- sw.Write(clientJson.ToString());
- }
- }
- //生成二维码和url
- saveFileFolderFirst = ReceiveConfigurationParameters[4];
- num = 1;
- saveFileFolder = saveFileFolderFirst;
- while (Directory.Exists(@"3in1_config\trojan_config\" + saveFileFolder))
- {
- saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
- num++;
- }
- Directory.CreateDirectory(@"3in1_config\trojan_config\" + saveFileFolder);//创建该文件夹
-
- string trojanUrl = $"trojan://{ReceiveConfigurationParameters[1]}@{ReceiveConfigurationParameters[4]}:443#{ReceiveConfigurationParameters[4]}";
- using (StreamWriter sw = new StreamWriter($"3in1_config\\trojan_config\\{saveFileFolder}\\url.txt"))
- {
- sw.WriteLine(trojanUrl);
-
- }
- //生成二维码
- QRCodeGenerator qrGeneratorTrojan = new QRCodeGenerator();
- QRCodeData qrCodeDataTrojan = qrGeneratorTrojan.CreateQrCode(trojanUrl, QRCodeGenerator.ECCLevel.Q);
- QRCode qrCodeTrojan = new QRCode(qrCodeDataTrojan);
- Bitmap qrCodeImageTrojan = qrCodeTrojan.GetGraphic(20);
- qrCodeImageTrojan.Save($"3in1_config\\trojan_config\\{saveFileFolder}\\QR.bmp");
-
- //生成说明文件
- using (StreamWriter sw = new StreamWriter($"3in1_config\\trojan_config\\{saveFileFolder}\\说明.txt"))
- {
- sw.WriteLine("config.json");
- sw.WriteLine("此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
- sw.WriteLine("Trojan官方网站:https://trojan-gfw.github.io/trojan/");
- sw.WriteLine("Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases");
- sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("QR.bmp");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
- sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
- sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
- sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
-
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("url.txt");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址");
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
- sw.WriteLine($"端口(Port):443");
- sw.WriteLine($"密钥:{ReceiveConfigurationParameters[1]}");
-
- }
- //移动Trojan官方配置config.json到与上述文件同一目录
- File.Move(@"3in1_config\trojan_config\config.json", @"3in1_config\trojan_config\" + saveFileFolder + @"\config.json");
-
- //生成NaiveProxy的客户端配置
- clientConfig = @"TemplateConfg\Naiveproxy_client_config.json";
- if (!Directory.Exists(@"3in1_config\naive_config"))//如果不存在就创建file文件夹
- {
- Directory.CreateDirectory(@"3in1_config\naive_config");//创建该文件夹
- }
- using (StreamReader reader = File.OpenText(clientConfig))
- {
- JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
-
- clientJson["proxy"] = $"https://{ReceiveConfigurationParameters[5]}:{ReceiveConfigurationParameters[6]}@{ReceiveConfigurationParameters[4]}";
-
- using (StreamWriter sw = new StreamWriter(@"3in1_config\naive_config\config.json"))
- {
- sw.Write(clientJson.ToString());
- }
- }
- //生成用于NaiveGUI的url
- saveFileFolderFirst = ReceiveConfigurationParameters[4];
- num = 1;
- saveFileFolder = saveFileFolderFirst;
- while (Directory.Exists(@"3in1_config\naive_config\" + saveFileFolder))
- {
- saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
- num++;
- }
- Directory.CreateDirectory(@"3in1_config\naive_config\" + saveFileFolder);//创建该文件夹
-
- string naiveUrl = $"https://{ReceiveConfigurationParameters[5]}:{ReceiveConfigurationParameters[6]}@{ReceiveConfigurationParameters[4]}:443/?name={ReceiveConfigurationParameters[4]}&padding=true";
- using (StreamWriter sw = new StreamWriter($"3in1_config\\naive_config\\{saveFileFolder}\\url.txt"))
- {
- sw.WriteLine(naiveUrl);
- }
- //生成说明文件
- using (StreamWriter sw = new StreamWriter($"3in1_config\\naive_config\\{saveFileFolder}\\说明.txt"))
- {
- sw.WriteLine("config.json");
- sw.WriteLine("此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
- sw.WriteLine("NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy");
- sw.WriteLine("NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases");
- sw.WriteLine("下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。");
- sw.WriteLine("-----------------------------------------\n");
- //sw.WriteLine("其他平台的客户端,暂未发布");
- //sw.WriteLine("QR.bmp");
- //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
- //sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
- //sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
- //sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
-
- //sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("url.txt");
- sw.WriteLine("此文件为NaiveGUI(windows)复制粘贴导入节点的网址");
- sw.WriteLine("NaiveGUI(windows)下载网址:https://github.com/ExcitedCodes/NaiveGUI/releases");
-
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
- sw.WriteLine($"用户名:{ReceiveConfigurationParameters[5]}");
- sw.WriteLine($"密钥:{ReceiveConfigurationParameters[6]}");
- }
- //移动Naive官方配置config.json到与上述文件同一目录
- File.Move(@"3in1_config\naive_config\config.json", @"3in1_config\naive_config\" + saveFileFolder + @"\config.json");
-
- client.Disconnect();
-
- currentStatus = "生成客户端配置,OK! 安装成功!";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
- Thread.Sleep(1000);
-
- //显示服务端连接参数
- MessageBox.Show("安装成功,所有相关配置参数与二维码,url都已保存在相应目录下,点击“确定”后打开");
- string openFolderPath = @"3in1_config\";
- System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
-
- return;
- }
- }
- catch (Exception ex1)//例外处理
- #region 例外处理
- {
- //MessageBox.Show(ex1.Message);
- if (ex1.Message.Contains("连接尝试失败") == true)
- {
- MessageBox.Show($"{ex1.Message}\n请检查主机地址及端口是否正确,如果通过代理,请检查代理是否正常工作");
- }
-
- else if (ex1.Message.Contains("denied (password)") == true)
- {
- MessageBox.Show($"{ex1.Message}\n密码错误或用户名错误");
- }
- else if (ex1.Message.Contains("Invalid private key file") == true)
- {
- MessageBox.Show($"{ex1.Message}\n所选密钥文件错误或者格式不对");
- }
- else if (ex1.Message.Contains("denied (publickey)") == true)
- {
- MessageBox.Show($"{ex1.Message}\n使用密钥登录,密钥文件错误或用户名错误");
- }
- else if (ex1.Message.Contains("目标计算机积极拒绝") == true)
- {
- MessageBox.Show($"{ex1.Message}\n主机地址错误,如果使用了代理,也可能是连接代理的端口错误");
- }
- else
- {
- MessageBox.Show("发生错误");
- MessageBox.Show(ex1.Message);
- }
- currentStatus = "主机登录失败";
- textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
-
- }
- #endregion
-
- }
#endregion
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- MessageBox.Show(System.Globalization.CultureInfo.InstalledUICulture.Name);
- }
+ // #region 三合一安装过程
+
+ // //生成三合一的v2ray路径
+ // private void ButtonV2rayPath3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // string path = RandomUserName();
+ // TextBoxV2rayPath3in1.Text = $"/{path}";
+ // }
+
+ // //生成三合一Trojan密码
+ // private void ButtonTrojanPassword3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // TextBoxTrojanPassword3in1.Text = RandomUUID();
+ // }
+
+ // //生成三合一V2ray的UUID
+ // private void ButtonV2rayUUID3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // TextBoxV2rayUUID3in1.Text = RandomUUID();
+ // }
+
+ // //生成三合一中Naive的用户名
+ // private void ButtonNaiveUser3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // TextBoxNaiveUser3in1.Text = RandomUserName();
+ // }
+
+ // //生成三合一中Naive的密码
+ // private void ButtonNaivePassword3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // TextBoxNaivePassword3in1.Text = RandomUUID();
+ // }
+
+ // //启用三合一安装运行
+ // private void Button_Login3in1_Click(object sender, RoutedEventArgs e)
+ // {
+ // if (string.IsNullOrEmpty(TextBoxDomain3in1.Text) == true)
+ // {
+ // MessageBox.Show("域名不能为空!");
+ // return;
+ // }
+ // //ReceiveConfigurationParameters[0]----模板类型
+ // //ReceiveConfigurationParameters[1]----Trojan的密码
+ // //ReceiveConfigurationParameters[2]----v2ray的uuid
+ // //ReceiveConfigurationParameters[3]----v2ray的path
+ // //ReceiveConfigurationParameters[4]----domain
+ // //ReceiveConfigurationParameters[5]----Naive的用户名
+ // //ReceiveConfigurationParameters[6]----Naive的密码
+ // //ReceiveConfigurationParameters[7]----伪装网站
+ // ConnectionInfo connectionInfo = GenerateConnectionInfo();
+ // if (connectionInfo == null)
+ // {
+ // MessageBox.Show("远程主机连接信息有误,请检查");
+ // return;
+ // }
+ // string serverConfig = ""; //服务端配置文件
+ // string clientConfig = ""; //生成的客户端配置文件
+ // string upLoadPath = ""; //服务端文件位置
+ // //传递参数
+ // ReceiveConfigurationParameters[4] = TextBoxDomain3in1.Text;//传递域名
+ // ReceiveConfigurationParameters[7] = TextBoxSites3in1.Text;//传递伪装网站
+ // ReceiveConfigurationParameters[2] = TextBoxV2rayUUID3in1.Text;//v2ray的uuid
+ // ReceiveConfigurationParameters[3] = TextBoxV2rayPath3in1.Text;//v2ray的path
+ // ReceiveConfigurationParameters[1] = TextBoxTrojanPassword3in1.Text;//Trojan的密码
+ // ReceiveConfigurationParameters[5] = TextBoxNaiveUser3in1.Text;//Naive的用户名
+ // ReceiveConfigurationParameters[6] = TextBoxNaivePassword3in1.Text;//Naive的密码
+ // if (TextBoxSites3in1.Text.ToString().Length >= 7)
+ // {
+ // string testDomain = TextBoxSites3in1.Text.Substring(0, 7);
+ // if (String.Equals(testDomain, "https:/") || String.Equals(testDomain, "http://"))
+ // {
+ // //MessageBox.Show(testDomain);
+ // ReceiveConfigurationParameters[7] = TextBoxSites3in1.Text.Replace("/", "\\/");
+ // }
+ // else
+ // {
+ // ReceiveConfigurationParameters[7] = "http:\\/\\/" + TextBoxSites3in1.Text;
+ // }
+ // }
+
+ // //Thread thread
+ // Thread thread = new Thread(() => StartSetUp3in1(connectionInfo, TextBlockSetUpProcessing, ProgressBarSetUpProcessing, serverConfig, clientConfig, upLoadPath));
+ // thread.SetApartmentState(ApartmentState.STA);
+ // thread.Start();
+ // }
+
+ // //登录远程主机布署三合一程序
+ // private void StartSetUp3in1(ConnectionInfo connectionInfo, TextBlock textBlockName, ProgressBar progressBar, string serverConfig, string clientConfig, string upLoadPath)
+ // {
+ // string currentStatus = "正在登录远程主机......";
+
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, 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)
+ // {
+ // currentStatus = "主机登录成功";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+ // //检测是否运行在root权限下
+ // string testRootAuthority = client.RunCommand(@"id -u").Result;
+ // if (testRootAuthority.Equals("0\n") == false)
+ // {
+ // MessageBox.Show("请使用具有root权限的账户登录主机!!");
+ // client.Disconnect();
+ // return;
+ // }
+ // //检测是否安装有V2ray
+ // currentStatus = "检测系统是否已经安装 V2ray or Trojan or NaiveProxy......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // string cmdTestV2rayInstalled = @"find / -name v2ray";
+ // string resultCmdTestV2rayInstalled = client.RunCommand(cmdTestV2rayInstalled).Result;
+ // string cmdTestTrojanInstalled = @"find / -name trojan";
+ // string resultCmdTestTrojanInstall = client.RunCommand(cmdTestTrojanInstalled).Result;
+ // string cmdTestNaiveInstalled = @"find / -name naive";
+ // string resultcmdTestNaiveInstalled = client.RunCommand(cmdTestNaiveInstalled).Result;
+ // if (resultCmdTestV2rayInstalled.Contains("/usr/bin/v2ray") == true || resultCmdTestTrojanInstall.Contains("/usr/local/bin/trojan") == true || resultcmdTestNaiveInstalled.Contains("/usr/local/bin/naive") == true)
+ // {
+ // MessageBoxResult messageBoxResult = MessageBox.Show("远程主机已安装V2ray or Trojan or NaiveProxy,是否强制重新安装?", "", MessageBoxButton.YesNo, MessageBoxImage.Question);
+ // if (messageBoxResult == MessageBoxResult.No)
+ // {
+ // currentStatus = "安装取消,退出";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // client.Disconnect();
+ // return;
+ // }
+ // }
+
+ // //检测远程主机系统环境是否符合要求
+ // currentStatus = "检测系统是否符合安装要求......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // string result = client.RunCommand("uname -r").Result;
+
+ // string[] linuxKernelVerStr = result.Split('-');
+
+ // bool detectResult = DetectKernelVersion(linuxKernelVerStr[0]);
+ // if (detectResult == false)
+ // {
+ // MessageBox.Show($"当前系统内核版本为{linuxKernelVerStr[0]},V2ray要求内核为2.6.23及以上。请升级内核再安装!");
+ // currentStatus = "系统内核版本不符合要求,安装失败!!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+ // result = client.RunCommand("uname -m").Result;
+
+ // if (result.Contains("x86_64") == false)
+ // {
+ // MessageBox.Show($"请在x86_64系统中安装Trojan/NaivProxy");
+ // currentStatus = "系统不符合要求,安装失败!!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+ // //检测系统是否支持yum 或 apt-get或zypper,且支持Systemd
+ // //如果不存在组件,则命令结果为空,string.IsNullOrEmpty值为真,
+ // bool getApt = String.IsNullOrEmpty(client.RunCommand("command -v apt-get").Result);
+ // bool getYum = String.IsNullOrEmpty(client.RunCommand("command -v yum").Result);
+ // bool getZypper = String.IsNullOrEmpty(client.RunCommand("command -v zypper").Result);
+ // bool getSystemd = String.IsNullOrEmpty(client.RunCommand("command -v systemctl").Result);
+ // bool getGetenforce = String.IsNullOrEmpty(client.RunCommand("command -v getenforce").Result);
+
+ // //没有安装apt-get,也没有安装yum,也没有安装zypper,或者没有安装systemd的,不满足安装条件
+ // //也就是apt-get ,yum, zypper必须安装其中之一,且必须安装Systemd的系统才能安装。
+ // if ((getApt && getYum && getZypper) || getSystemd)
+ // {
+ // MessageBox.Show($"系统缺乏必要的安装组件如:apt-get||yum||zypper||Syetemd,主机系统推荐使用:CentOS 7/8,Debian 8/9/10,Ubuntu 16.04及以上版本");
+ // currentStatus = "系统环境不满足要求,安装失败!!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // client.Disconnect();
+ // return;
+ // }
+ // //判断是否启用了SELinux,如果启用了,并且工作在Enforcing模式下,则改为Permissive模式
+ // if (getGetenforce == false)
+ // {
+ // string testSELinux = client.RunCommand("getenforce").Result;
+ // if (testSELinux.Contains("Enforcing") == true)
+ // {
+ // client.RunCommand("setenforce 0");//不重启改为Permissive模式
+ // client.RunCommand("sed -i 's/SELINUX=enforcing/SELINUX=permissive/' /etc/selinux/config");//重启也工作在Permissive模式下
+ // }
+
+ // }
+
+ // //校对时间
+ // currentStatus = "校对时间......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // //获取远程主机的时间戳
+ // long timeStampVPS = Convert.ToInt64(client.RunCommand("date +%s").Result.ToString());
+
+ // //获取本地时间戳
+ // TimeSpan ts = DateTime.Now.ToUniversalTime() - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+ // long timeStampLocal = Convert.ToInt64(ts.TotalSeconds);
+ // if (Math.Abs(timeStampLocal - timeStampVPS) >= 90)
+ // {
+
+ // MessageBox.Show("本地时间与远程主机时间相差超过限制(90秒),请先用\"系统工具-->时间校对\"校对时间后再设置");
+ // currentStatus = "时间较对失败......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // client.Disconnect();
+ // return;
+ // }
+
+ // currentStatus = "正在检测域名是否解析到当前VPS的IP上......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //在相应系统内安装curl(如果没有安装curl)
+ // if (string.IsNullOrEmpty(client.RunCommand("command -v curl").Result) == true)
+ // {
+ // //为假则表示系统有相应的组件。
+ // if (getApt == false)
+ // {
+ // client.RunCommand("apt-get -qq update");
+ // client.RunCommand("apt-get -y -qq install curl");
+ // }
+ // if (getYum == false)
+ // {
+ // client.RunCommand("yum -q makecache");
+ // client.RunCommand("yum -y -q install curl");
+ // }
+ // if (getZypper == false)
+ // {
+ // client.RunCommand("zypper ref");
+ // client.RunCommand("zypper -y install curl");
+ // }
+ // }
+
+ // string vpsIp3in1 = client.RunCommand("curl -4 ip.sb").Result.ToString();
+ // string testDomainCmd = "ping " + ReceiveConfigurationParameters[4] + " -c 1 | grep -oE -m1 \"([0-9]{1,3}\\.){3}[0-9]{1,3}\"";
+ // string resulttestDomainCmd = client.RunCommand(testDomainCmd).Result.ToString();
+
+ // if (String.Equals(vpsIp3in1, resulttestDomainCmd) == true)
+ // {
+ // currentStatus = "解析正确!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+ // else
+ // {
+ // currentStatus = "域名未能正确解析到当前VPS的IP上!安装失败!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // MessageBox.Show("域名未能正确解析到当前VPS的IP上,请检查!若解析设置正确,请等待生效后再重试安装。如果域名使用了CDN,请先关闭!");
+ // client.Disconnect();
+ // return;
+ // }
+
+ // //检测是否安装lsof
+ // if (string.IsNullOrEmpty(client.RunCommand("command -v lsof").Result) == true)
+ // {
+ // //为假则表示系统有相应的组件。
+ // if (getApt == false)
+ // {
+ // client.RunCommand("apt-get -qq update");
+ // client.RunCommand("apt-get -y -qq install lsof");
+ // }
+ // if (getYum == false)
+ // {
+ // client.RunCommand("yum -q makecache");
+ // client.RunCommand("yum -y -q install lsof");
+ // }
+ // if (getZypper == false)
+ // {
+ // client.RunCommand("zypper ref");
+ // client.RunCommand("zypper -y install lsof");
+ // }
+ // }
+ // currentStatus = "正在检测端口占用情况......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // if (String.IsNullOrEmpty(client.RunCommand(@"lsof -n -P -i :80 | grep LISTEN").Result) == false || String.IsNullOrEmpty(client.RunCommand(@"lsof -n -P -i :443 | grep LISTEN").Result) == false)
+ // {
+ // //MessageBox.Show("80/443端口之一,或全部被占用,请先用系统工具中的“释放80/443端口”工具,释放出,再重新安装");
+ // MessageBoxResult dialogResult = MessageBox.Show("80/443端口之一,或全部被占用,将强制停止占用80/443端口的程序?", "Stop application", MessageBoxButton.YesNo);
+ // if (dialogResult == MessageBoxResult.No)
+ // {
+ // currentStatus = "端口被占用,安装失败......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // client.Disconnect();
+ // return;
+ // }
+
+ // currentStatus = "正在释放80/443端口......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // string cmdTestPort = @"lsof -n -P -i :443 | grep LISTEN";
+ // string cmdResult = client.RunCommand(cmdTestPort).Result;
+ // if (String.IsNullOrEmpty(cmdResult) == false)
+ // {
+ // string[] cmdResultArry443 = cmdResult.Split(' ');
+ // client.RunCommand($"systemctl stop {cmdResultArry443[0]}");
+ // client.RunCommand($"systemctl disable {cmdResultArry443[0]}");
+ // client.RunCommand($"kill -9 {cmdResultArry443[3]}");
+ // }
+
+ // cmdTestPort = @"lsof -n -P -i :80 | grep LISTEN";
+ // cmdResult = client.RunCommand(cmdTestPort).Result;
+ // if (String.IsNullOrEmpty(cmdResult) == false)
+ // {
+ // string[] cmdResultArry80 = cmdResult.Split(' ');
+ // client.RunCommand($"systemctl stop {cmdResultArry80[0]}");
+ // client.RunCommand($"systemctl disable {cmdResultArry80[0]}");
+ // client.RunCommand($"kill -9 {cmdResultArry80[3]}");
+ // }
+ // currentStatus = "80/443端口释放完毕!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // }
+
+ // //打开防火墙端口
+
+ // if (String.IsNullOrEmpty(client.RunCommand("command -v firewall-cmd").Result) == false)
+ // {
+ // client.RunCommand("firewall-cmd --zone=public --add-port=80/tcp --permanent");
+ // client.RunCommand("firewall-cmd --zone=public --add-port=443/tcp --permanent");
+ // client.RunCommand("firewall-cmd --reload");
+
+ // }
+ // if (String.IsNullOrEmpty(client.RunCommand("command -v ufw").Result) == false)
+ // {
+
+ // client.RunCommand("ufw allow 80");
+ // client.RunCommand("ufw allow 443");
+ // client.RunCommand("yes | ufw reload");
+ // }
+
+ // currentStatus = "符合安装要求,V2ray安装中......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //下载官方安装脚本安装V2ray
+ // client.RunCommand("curl -o /tmp/go.sh https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh");
+ // client.RunCommand("yes | bash /tmp/go.sh -f");
+ // string installResult = client.RunCommand("find / -name v2ray").Result.ToString();
+
+ // if (!installResult.Contains("/usr/local/bin/v2ray"))
+ // {
+ // MessageBox.Show("安装V2ray失败(官方脚本运行出错!");
+
+ // currentStatus = "安装V2ray失败(官方脚本运行出错!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // client.Disconnect();
+ // return;
+ // }
+ // //client.RunCommand("mv /etc/v2ray/config.json /etc/v2ray/config.json.1");
+
+ // //上传配置文件
+ // currentStatus = "V2ray程序安装完毕,配置文件上传中......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //生成服务端配置
+ // serverConfig = @"TemplateConfg\WebSocketTLSWeb_server_config.json";
+ // using (StreamReader reader = File.OpenText(serverConfig))
+ // {
+ // JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
+ // //设置uuid
+ // serverJson["inbounds"][0]["settings"]["clients"][0]["id"] = ReceiveConfigurationParameters[2];
+ // //设置路径
+ // serverJson["inbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3];
+
+ // using (StreamWriter sw = new StreamWriter(@"config.json"))
+ // {
+ // sw.Write(serverJson.ToString());
+ // }
+ // }
+ // upLoadPath = "usr/local/etc/v2ray/config.json";
+ // UploadConfig(connectionInfo, @"config.json", upLoadPath);
+ // File.Delete(@"config.json");
+
+ // client.RunCommand("systemctl restart v2ray");
+ // currentStatus = "启动V2ray,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //安装Trojan
+ // currentStatus = "开始安装Trojan......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //下载官方安装脚本安装
+
+ // client.RunCommand("curl -o /tmp/trojan-quickstart.sh https://raw.githubusercontent.com/trojan-gfw/trojan-quickstart/master/trojan-quickstart.sh");
+ // client.RunCommand("yes | bash /tmp/trojan-quickstart.sh");
+
+ // installResult = client.RunCommand("find / -name trojan").Result.ToString();
+
+ // if (!installResult.Contains("/usr/local/bin/trojan"))
+ // {
+ // MessageBox.Show("安装Trojan失败(官方脚本运行出错!");
+
+ // currentStatus = "安装Trojan失败(官方脚本运行出错!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // client.Disconnect();
+ // return;
+ // }
+ // client.RunCommand("mv /usr/local/etc/trojan/config.json /usr/local/etc/trojan/config.json.1");
+
+ // //上传配置文件
+ // currentStatus = "Trojan程序安装完毕,配置文件上传中......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //生成服务端配置
+ // serverConfig = @"TemplateConfg\trojan_server_config.json";
+ // using (StreamReader reader = File.OpenText(serverConfig))
+ // {
+ // JObject serverJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
+ // //设置密码
+ // serverJson["password"][0] = ReceiveConfigurationParameters[1];
+
+ // using (StreamWriter sw = new StreamWriter(@"config.json"))
+ // {
+ // sw.Write(serverJson.ToString());
+ // }
+ // }
+ // upLoadPath = "/usr/local/etc/trojan/config.json";
+ // UploadConfig(connectionInfo, @"config.json", upLoadPath);
+ // File.Delete(@"config.json");
+
+
+ // //安装NaiveProxy
+ // currentStatus = "开始安装NaiveProxy......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //下载安装脚本安装
+
+ // client.RunCommand("curl -o /tmp/naive-quickstart.sh https://raw.githubusercontent.com/proxysu/shellscript/master/naive-quickstart.sh");
+ // client.RunCommand("yes | bash /tmp/naive-quickstart.sh");
+
+ // installResult = client.RunCommand("find / -name naive").Result.ToString();
+
+ // if (!installResult.Contains("/usr/local/bin/naive"))
+ // {
+ // MessageBox.Show("安装NaiveProxy失败(脚本运行出错!");
+ // client.Disconnect();
+ // currentStatus = "安装NaiveProxy失败(脚本运行出错!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // client.Disconnect();
+ // return;
+ // }
+
+ // currentStatus = "NaiveProxy程序安装完毕......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // client.RunCommand("systemctl restart naive");
+ // currentStatus = "启动Naive,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+
+
+
+ // currentStatus = "正在安装acme.sh......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // if (getApt == false)
+ // {
+ // //client.RunCommand("apt-get -qq update");
+ // client.RunCommand("apt-get -y -qq install socat");
+ // }
+ // if (getYum == false)
+ // {
+ // //client.RunCommand("yum -q makecache");
+ // client.RunCommand("yum -y -q install socat");
+ // }
+ // if (getZypper == false)
+ // {
+ // // client.RunCommand("zypper ref");
+ // client.RunCommand("zypper -y install socat");
+ // }
+ // client.RunCommand("curl https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh | INSTALLONLINE=1 sh");
+ // client.RunCommand("cd ~/.acme.sh/");
+ // client.RunCommand("alias acme.sh=~/.acme.sh/acme.sh");
+
+ // currentStatus = "申请域名证书......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //client.RunCommand("mkdir -p /etc/v2ray/ssl");
+ // client.RunCommand($"/root/.acme.sh/acme.sh --issue --standalone -d {ReceiveConfigurationParameters[4]}");
+
+ // currentStatus = "正在安装证书......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // client.RunCommand($"/root/.acme.sh/acme.sh --installcert -d {ReceiveConfigurationParameters[4]} --certpath /usr/local/etc/trojan/trojan_ssl.crt --keypath /usr/local/etc/trojan/trojan_ssl.key --capath /usr/local/etc/trojan/trojan_ssl.crt --reloadcmd \"systemctl restart trojan\"");
+
+ // currentStatus = "证书安装,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // client.RunCommand("systemctl restart trojan");
+
+ // currentStatus = "Trojan重启加载证书,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // currentStatus = "正在安装Caddy......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // client.RunCommand("curl https://getcaddy.com -o getcaddy");
+ // client.RunCommand("bash getcaddy personal http.forwardproxy,hook.service");
+ // client.RunCommand("mkdir -p /etc/caddy");
+ // client.RunCommand("mkdir -p /var/www");
+
+
+ // currentStatus = "上传Caddy配置文件......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // serverConfig = @"TemplateConfg\3in1_config.caddyfile";
+
+ // upLoadPath = "/etc/caddy/Caddyfile";
+ // UploadConfig(connectionInfo, serverConfig, upLoadPath);
+
+ // //设置邮箱
+ // string email = $"user@{ReceiveConfigurationParameters[4]}";
+ // //设置Path
+ // string sshCmd;
+ // sshCmd = $"sed -i 's/##path##/\\{ReceiveConfigurationParameters[3]}/' {upLoadPath}";
+ // client.RunCommand(sshCmd);
+ // //设置域名
+ // sshCmd = $"sed -i 's/##domain##/{ReceiveConfigurationParameters[4]}:80/' {upLoadPath}";
+ // client.RunCommand(sshCmd);
+ // sshCmd = $"sed -i 's/##basicauth##/basicauth {ReceiveConfigurationParameters[5]} {ReceiveConfigurationParameters[6]}/' {upLoadPath}";
+ // client.RunCommand(sshCmd);
+ // //设置伪装网站
+
+ // if (String.IsNullOrEmpty(ReceiveConfigurationParameters[7]) == false)
+ // {
+ // sshCmd = $"sed -i 's/##sites##/proxy \\/ {ReceiveConfigurationParameters[7]}/' {upLoadPath}";
+ // client.RunCommand(sshCmd);
+ // }
+ // Thread.Sleep(2000);
+
+ // //安装Caddy服务
+ // sshCmd = $"caddy -service install -agree -conf /etc/caddy/Caddyfile -email {email}";
+ // client.RunCommand(sshCmd);
+
+ // //启动Caddy服务
+ // client.RunCommand("caddy -service restart");
+ // currentStatus = "启动Caddy,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // currentStatus = "正在启用BBR......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // //测试BBR条件,若满足提示是否启用
+ // result = client.RunCommand("uname -r").Result;
+ // //var result = client.RunCommand("cat /root/test.ver");
+ // linuxKernelVerStr = result.Split('-');
+
+ // detectResult = DetectKernelVersionBBR(linuxKernelVerStr[0]);
+ // string resultCmdTestBBR = client.RunCommand(@"sysctl net.ipv4.tcp_congestion_control | grep bbr").Result;
+ // //如果内核满足大于等于4.9,且还未启用BBR,则启用BBR
+ // if (detectResult == true && resultCmdTestBBR.Contains("bbr") == false)
+ // {
+ // client.RunCommand(@"bash -c 'echo ""net.core.default_qdisc=fq"" >> /etc/sysctl.conf'");
+ // client.RunCommand(@"bash -c 'echo ""net.ipv4.tcp_congestion_control=bbr"" >> /etc/sysctl.conf'");
+ // client.RunCommand(@"sysctl -p");
+ // }
+ // resultCmdTestBBR = client.RunCommand(@"sysctl net.ipv4.tcp_congestion_control | grep bbr").Result;
+ // if (resultCmdTestBBR.Contains("bbr") == true)
+ // {
+ // currentStatus = "启用BBR,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+ // else
+ // {
+ // currentStatus = "启用BBR,未成功!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // }
+
+ // currentStatus = "正在优化网络参数......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // //优化网络参数
+ // sshCmd = @"bash -c 'echo ""fs.file-max = 51200"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.rmem_max = 67108864"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.wmem_max = 67108864"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.rmem_default = 65536"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.wmem_default = 65536"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.netdev_max_backlog = 4096"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.core.somaxconn = 4096"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_syncookies = 1"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_tw_reuse = 1"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_tw_recycle = 0"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_fin_timeout = 30"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_keepalive_time = 1200"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.ip_local_port_range = 10000 65000"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_max_syn_backlog = 4096"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_max_tw_buckets = 5000"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_rmem = 4096 87380 67108864"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_wmem = 4096 65536 67108864"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"bash -c 'echo ""net.ipv4.tcp_mtu_probing = 1"" >> /etc/sysctl.conf'";
+ // client.RunCommand(sshCmd);
+ // sshCmd = @"sysctl -p";
+ // client.RunCommand(sshCmd);
+
+ // currentStatus = "优化网络参数,OK!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //生成客户端配置
+ // currentStatus = "生成客户端配置......";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+ // //创建3in1文件夹
+ // if (!Directory.Exists("3in1_config"))//如果不存在就创建file文件夹
+ // {
+ // Directory.CreateDirectory("3in1_config");//创建该文件夹
+ // }
+ // //生成v2ray官方客户端配置
+ // clientConfig = @"TemplateConfg\WebSocketTLSWeb_client_config.json";
+ // using (StreamReader reader = File.OpenText(clientConfig))
+ // {
+ // JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
+
+ // clientJson["outbounds"][0]["settings"]["vnext"][0]["address"] = ReceiveConfigurationParameters[4];
+ // clientJson["outbounds"][0]["settings"]["vnext"][0]["port"] = int.Parse("443");
+ // clientJson["outbounds"][0]["settings"]["vnext"][0]["users"][0]["id"] = ReceiveConfigurationParameters[2];
+
+ // clientJson["outbounds"][0]["streamSettings"]["wsSettings"]["path"] = ReceiveConfigurationParameters[3];
+ // if (!Directory.Exists(@"3in1_config\v2ray_config"))//如果不存在就创建file文件夹
+ // {
+ // Directory.CreateDirectory(@"3in1_config\v2ray_config");//创建该文件夹
+ // }
+ // using (StreamWriter sw = new StreamWriter(@"3in1_config\v2ray_config\config.json"))
+ // {
+ // sw.Write(clientJson.ToString());
+ // }
+ // }
+ // //生成V2rayN的客户端
+ // string v2rayNjsonFile = @"
+ //{
+ // ""v"": """",
+ // ""ps"": """",
+ // ""add"": """",
+ // ""port"": """",
+ // ""id"": """",
+ // ""aid"": """",
+ // ""net"": """",
+ // ""type"": """",
+ // ""host"": """",
+ // ""path"": """",
+ // ""tls"": """"
+ //}";
+ // JObject v2rayNjsonObject = JObject.Parse(v2rayNjsonFile);
+ // v2rayNjsonObject["v"] = "2";
+ // v2rayNjsonObject["add"] = ReceiveConfigurationParameters[4]; //设置域名
+ // v2rayNjsonObject["port"] = "443"; //设置端口
+ // v2rayNjsonObject["id"] = ReceiveConfigurationParameters[2]; //设置uuid
+ // v2rayNjsonObject["aid"] = "16"; //设置额外ID
+ // v2rayNjsonObject["net"] = "ws"; //设置传输模式
+ // v2rayNjsonObject["type"] = "none"; //设置伪装类型
+ // v2rayNjsonObject["path"] = ReceiveConfigurationParameters[3];//设置路径
+ // v2rayNjsonObject["host"] = "";//设置TLS的Host
+ // v2rayNjsonObject["tls"] = "tls"; //设置是否启用TLS
+ // v2rayNjsonObject["ps"] = v2rayNjsonObject["add"]; //设置备注
+
+ // //如果已存在以前保存目录,则新建后缀数字依次增加
+ // string saveFileFolderFirst = v2rayNjsonObject["ps"].ToString();
+ // int num = 1;
+ // string saveFileFolder = saveFileFolderFirst;
+ // while (Directory.Exists(@"3in1_config\v2ray_config\" + saveFileFolder))
+ // {
+ // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
+ // num++;
+ // }
+ // Directory.CreateDirectory(@"3in1_config\v2ray_config\" + saveFileFolder);//创建该文件夹
+
+
+ // //生成url和二维码
+ // byte[] textBytes = Encoding.UTF8.GetBytes(v2rayNjsonObject.ToString());
+ // string vmessUrl = "vmess://" + Convert.ToBase64String(textBytes);
+
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\v2ray_config\\{saveFileFolder}\\url.txt"))
+ // {
+ // sw.WriteLine(vmessUrl);
+
+ // }
+ // //生成二维码
+ // QRCodeGenerator qrGenerator = new QRCodeGenerator();
+ // QRCodeData qrCodeData = qrGenerator.CreateQrCode(vmessUrl, QRCodeGenerator.ECCLevel.Q);
+ // QRCode qrCode = new QRCode(qrCodeData);
+ // Bitmap qrCodeImage = qrCode.GetGraphic(20);
+ // //IntPtr myImagePtr = qrCodeImage.GetHbitmap();
+ // //BitmapSource imgsource = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(myImagePtr, IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
+ // //ImageShareQRcode.Source = imgsource;
+ // ////DeleteObject(myImagePtr);
+ // qrCodeImage.Save($"3in1_config\\v2ray_config\\{saveFileFolder}\\QR.bmp");
+
+ // //生成说明文件
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\v2ray_config\\{saveFileFolder}\\说明.txt"))
+ // {
+ // sw.WriteLine("config.json");
+ // sw.WriteLine("此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081");
+ // sw.WriteLine("v2ray官方网站:https://www.v2ray.com/");
+ // sw.WriteLine("v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases");
+ // sw.WriteLine("下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。");
+ // sw.WriteLine("-----------------------------------------");
+ // sw.WriteLine("QR.bmp");
+ // sw.WriteLine("此文件为v2rayN、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点");
+ // sw.WriteLine("v2rayN下载网址:https://github.com/2dust/v2rayN/releases");
+ // sw.WriteLine("v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases");
+ // sw.WriteLine("v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang");
+ // sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ // sw.WriteLine("-----------------------------------------");
+ // sw.WriteLine("url.txt");
+ // sw.WriteLine("此文件为v2rayN、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址");
+ // sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("服务器通用连接配置参数");
+ // sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
+ // sw.WriteLine($"端口(Port):443");
+ // sw.WriteLine($"用户ID(uuid):{ReceiveConfigurationParameters[2]}");
+ // sw.WriteLine($"额外ID:16");
+ // sw.WriteLine($"加密方式:auto");
+ // sw.WriteLine($"传输协议:ws");
+ // sw.WriteLine($"伪装类型:none");
+ // sw.WriteLine($"是否使用TLS:tls");
+ // sw.WriteLine($"host:");
+ // sw.WriteLine($"路径(Path):{ReceiveConfigurationParameters[3]}");
+ // sw.WriteLine($"QUIC密钥:");
+ // }
+ // //移动V2ray官方配置config.json到与上述文件同一目录
+ // File.Move(@"3in1_config\v2ray_config\config.json", @"3in1_config\v2ray_config\" + saveFileFolder + @"\config.json");
+
+ // //生成Trojan客户端文件
+ // clientConfig = @"TemplateConfg\trojan_client_config.json";
+ // if (!Directory.Exists(@"3in1_config\trojan_config"))//如果不存在就创建file文件夹
+ // {
+ // Directory.CreateDirectory(@"3in1_config\trojan_config");//创建该文件夹
+ // }
+ // using (StreamReader reader = File.OpenText(clientConfig))
+ // {
+ // JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
+
+ // clientJson["remote_addr"] = ReceiveConfigurationParameters[4];
+ // //clientJson["remote_port"] = int.Parse(ReceiveConfigurationParameters[1]);
+ // clientJson["password"][0] = ReceiveConfigurationParameters[1];
+
+ // using (StreamWriter sw = new StreamWriter(@"3in1_config\trojan_config\config.json"))
+ // {
+ // sw.Write(clientJson.ToString());
+ // }
+ // }
+ // //生成二维码和url
+ // saveFileFolderFirst = ReceiveConfigurationParameters[4];
+ // num = 1;
+ // saveFileFolder = saveFileFolderFirst;
+ // while (Directory.Exists(@"3in1_config\trojan_config\" + saveFileFolder))
+ // {
+ // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
+ // num++;
+ // }
+ // Directory.CreateDirectory(@"3in1_config\trojan_config\" + saveFileFolder);//创建该文件夹
+
+ // string trojanUrl = $"trojan://{ReceiveConfigurationParameters[1]}@{ReceiveConfigurationParameters[4]}:443#{ReceiveConfigurationParameters[4]}";
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\trojan_config\\{saveFileFolder}\\url.txt"))
+ // {
+ // sw.WriteLine(trojanUrl);
+
+ // }
+ // //生成二维码
+ // QRCodeGenerator qrGeneratorTrojan = new QRCodeGenerator();
+ // QRCodeData qrCodeDataTrojan = qrGeneratorTrojan.CreateQrCode(trojanUrl, QRCodeGenerator.ECCLevel.Q);
+ // QRCode qrCodeTrojan = new QRCode(qrCodeDataTrojan);
+ // Bitmap qrCodeImageTrojan = qrCodeTrojan.GetGraphic(20);
+ // qrCodeImageTrojan.Save($"3in1_config\\trojan_config\\{saveFileFolder}\\QR.bmp");
+
+ // //生成说明文件
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\trojan_config\\{saveFileFolder}\\说明.txt"))
+ // {
+ // sw.WriteLine("config.json");
+ // sw.WriteLine("此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
+ // sw.WriteLine("Trojan官方网站:https://trojan-gfw.github.io/trojan/");
+ // sw.WriteLine("Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases");
+ // sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
+ // sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("QR.bmp");
+ // sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
+ // sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
+ // sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
+ // sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ // sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("url.txt");
+ // sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址");
+ // sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("服务器通用连接配置参数");
+ // sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
+ // sw.WriteLine($"端口(Port):443");
+ // sw.WriteLine($"密钥:{ReceiveConfigurationParameters[1]}");
+
+ // }
+ // //移动Trojan官方配置config.json到与上述文件同一目录
+ // File.Move(@"3in1_config\trojan_config\config.json", @"3in1_config\trojan_config\" + saveFileFolder + @"\config.json");
+
+ // //生成NaiveProxy的客户端配置
+ // clientConfig = @"TemplateConfg\Naiveproxy_client_config.json";
+ // if (!Directory.Exists(@"3in1_config\naive_config"))//如果不存在就创建file文件夹
+ // {
+ // Directory.CreateDirectory(@"3in1_config\naive_config");//创建该文件夹
+ // }
+ // using (StreamReader reader = File.OpenText(clientConfig))
+ // {
+ // JObject clientJson = (JObject)JToken.ReadFrom(new JsonTextReader(reader));
+
+ // clientJson["proxy"] = $"https://{ReceiveConfigurationParameters[5]}:{ReceiveConfigurationParameters[6]}@{ReceiveConfigurationParameters[4]}";
+
+ // using (StreamWriter sw = new StreamWriter(@"3in1_config\naive_config\config.json"))
+ // {
+ // sw.Write(clientJson.ToString());
+ // }
+ // }
+ // //生成用于NaiveGUI的url
+ // saveFileFolderFirst = ReceiveConfigurationParameters[4];
+ // num = 1;
+ // saveFileFolder = saveFileFolderFirst;
+ // while (Directory.Exists(@"3in1_config\naive_config\" + saveFileFolder))
+ // {
+ // saveFileFolder = saveFileFolderFirst + "_copy_" + num.ToString();
+ // num++;
+ // }
+ // Directory.CreateDirectory(@"3in1_config\naive_config\" + saveFileFolder);//创建该文件夹
+
+ // string naiveUrl = $"https://{ReceiveConfigurationParameters[5]}:{ReceiveConfigurationParameters[6]}@{ReceiveConfigurationParameters[4]}:443/?name={ReceiveConfigurationParameters[4]}&padding=true";
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\naive_config\\{saveFileFolder}\\url.txt"))
+ // {
+ // sw.WriteLine(naiveUrl);
+ // }
+ // //生成说明文件
+ // using (StreamWriter sw = new StreamWriter($"3in1_config\\naive_config\\{saveFileFolder}\\说明.txt"))
+ // {
+ // sw.WriteLine("config.json");
+ // sw.WriteLine("此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
+ // sw.WriteLine("NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy");
+ // sw.WriteLine("NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases");
+ // sw.WriteLine("下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。");
+ // sw.WriteLine("-----------------------------------------\n");
+ // //sw.WriteLine("其他平台的客户端,暂未发布");
+ // //sw.WriteLine("QR.bmp");
+ // //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
+ // //sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
+ // //sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
+ // //sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ // //sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("url.txt");
+ // sw.WriteLine("此文件为NaiveGUI(windows)复制粘贴导入节点的网址");
+ // sw.WriteLine("NaiveGUI(windows)下载网址:https://github.com/ExcitedCodes/NaiveGUI/releases");
+
+ // sw.WriteLine("-----------------------------------------\n");
+ // sw.WriteLine("服务器通用连接配置参数");
+ // sw.WriteLine($"地址(address):{ReceiveConfigurationParameters[4]}");
+ // sw.WriteLine($"用户名:{ReceiveConfigurationParameters[5]}");
+ // sw.WriteLine($"密钥:{ReceiveConfigurationParameters[6]}");
+ // }
+ // //移动Naive官方配置config.json到与上述文件同一目录
+ // File.Move(@"3in1_config\naive_config\config.json", @"3in1_config\naive_config\" + saveFileFolder + @"\config.json");
+
+ // client.Disconnect();
+
+ // currentStatus = "生成客户端配置,OK! 安装成功!";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ // Thread.Sleep(1000);
+
+ // //显示服务端连接参数
+ // MessageBox.Show("安装成功,所有相关配置参数与二维码,url都已保存在相应目录下,点击“确定”后打开");
+ // string openFolderPath = @"3in1_config\";
+ // System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
+
+ // return;
+ // }
+ // }
+ // catch (Exception ex1)//例外处理
+ // #region 例外处理
+ // {
+ // //MessageBox.Show(ex1.Message);
+ // if (ex1.Message.Contains("连接尝试失败") == true)
+ // {
+ // MessageBox.Show($"{ex1.Message}\n请检查主机地址及端口是否正确,如果通过代理,请检查代理是否正常工作");
+ // }
+
+ // else if (ex1.Message.Contains("denied (password)") == true)
+ // {
+ // MessageBox.Show($"{ex1.Message}\n密码错误或用户名错误");
+ // }
+ // else if (ex1.Message.Contains("Invalid private key file") == true)
+ // {
+ // MessageBox.Show($"{ex1.Message}\n所选密钥文件错误或者格式不对");
+ // }
+ // else if (ex1.Message.Contains("denied (publickey)") == true)
+ // {
+ // MessageBox.Show($"{ex1.Message}\n使用密钥登录,密钥文件错误或用户名错误");
+ // }
+ // else if (ex1.Message.Contains("目标计算机积极拒绝") == true)
+ // {
+ // MessageBox.Show($"{ex1.Message}\n主机地址错误,如果使用了代理,也可能是连接代理的端口错误");
+ // }
+ // else
+ // {
+ // MessageBox.Show("发生错误");
+ // MessageBox.Show(ex1.Message);
+ // }
+ // currentStatus = "主机登录失败";
+ // textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+
+ // }
+ // #endregion
+
+ // }
+
+
+ // #endregion
+
}
}
diff --git a/ProxySU/ProofreadTimeWindow.xaml b/ProxySU/ProofreadTimeWindow.xaml
index 712afac..fbe4c24 100644
--- a/ProxySU/ProofreadTimeWindow.xaml
+++ b/ProxySU/ProofreadTimeWindow.xaml
@@ -19,17 +19,17 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
diff --git a/ProxySU/ProxySU.csproj b/ProxySU/ProxySU.csproj
index fb08767..bf6e05f 100644
--- a/ProxySU/ProxySU.csproj
+++ b/ProxySU/ProxySU.csproj
@@ -121,6 +121,10 @@
Designer
MSBuild:Compile
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
diff --git a/ProxySU/ResultClientInformation.xaml b/ProxySU/ResultClientInformation.xaml
index cfaabf0..b366ac9 100644
--- a/ProxySU/ResultClientInformation.xaml
+++ b/ProxySU/ResultClientInformation.xaml
@@ -12,10 +12,11 @@
-
+
+
-
+
@@ -23,7 +24,7 @@
-
+
@@ -33,45 +34,45 @@
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
@@ -86,24 +87,23 @@
-
-
+
-
+
-
+
-
+
-
+
@@ -117,23 +117,23 @@
-
+
-
+
-
+
-
+
-
+
@@ -150,13 +150,13 @@
-
+
-
+
-
+
@@ -164,7 +164,7 @@
-
-
+
-
+
@@ -207,8 +207,8 @@
-
-
+
+
diff --git a/ProxySU/ResultClientInformation.xaml.cs b/ProxySU/ResultClientInformation.xaml.cs
index c7a32f2..5b3c4f4 100644
--- a/ProxySU/ResultClientInformation.xaml.cs
+++ b/ProxySU/ResultClientInformation.xaml.cs
@@ -294,7 +294,8 @@ namespace ProxySU
TextBlockTrojanGoWebSocketPath.Visibility = Visibility.Hidden;
TextBlockTrojanGoCaption.Visibility = Visibility.Hidden;
- TextBlockQrURLexplain.Text = "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。";
+ //******"可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。" ******
+ TextBlockQrURLexplain.Text = Application.Current.FindResource("TextBlockQrURLexplainTrojan-go").ToString();
//主机地址
TextBoxTrojanGoServerHost.Text = MainWindow.ReceiveConfigurationParameters[4];
@@ -321,7 +322,7 @@ namespace ProxySU
GroupBoxTrojanClient.Visibility = Visibility.Visible;
GroupBoxNaiveProxyClient.Visibility = Visibility.Collapsed;
- TextBlockQrURLexplain.Text = "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url";
+ TextBlockQrURLexplain.Text = Application.Current.FindResource("TextBlockQrURLexplainTrojan").ToString();
//主机地址
TextBoxTrojanServerHost.Text = MainWindow.ReceiveConfigurationParameters[4];
@@ -340,7 +341,7 @@ namespace ProxySU
GroupBoxTrojanClient.Visibility = Visibility.Collapsed;
GroupBoxNaiveProxyClient.Visibility = Visibility.Visible;
- TextBlockQrURLexplain.Text = "用于NaiveGUI(windows)的URL导入链接";
+ TextBlockQrURLexplain.Text = Application.Current.FindResource("TextBlockQrURLexplainNaiveProxy").ToString();
TextBoxNaiveServerHost.Text = MainWindow.ReceiveConfigurationParameters[4];
TextBoxNaiveUser.Text = MainWindow.ReceiveConfigurationParameters[3];
@@ -468,38 +469,64 @@ namespace ProxySU
//File.Delete(@"config\config.json");//删除该文件
}
- using (StreamWriter sw = new StreamWriter($"v2ray_config\\{saveFileFolder}\\说明.txt"))
+ using (StreamWriter sw = new StreamWriter($"v2ray_config\\{saveFileFolder}\\readme.txt"))
{
sw.WriteLine("config.json");
- sw.WriteLine("此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081");
- sw.WriteLine("v2ray官方网站:https://www.v2ray.com/");
- sw.WriteLine("v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases");
- sw.WriteLine("下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。");
+ //****** "此文件为v2ray官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080,http代理地址:127.0.0.1:1081" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine01").ToString());
+
+ //****** "v2ray官方网站:https://www.v2ray.com/" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine02").ToString());
+
+ //****** "v2ray官方程序下载地址:https://github.com/v2ray/v2ray-core/releases" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine03").ToString());
+
+ //****** "下载相应版本,Windows选择v2ray-windows-64.zip或者v2ray-windows-32.zip,解压后提取v2ctl.exe和v2ray.exe。与config.json放在同一目录,运行v2ray.exe即可。" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine04").ToString());
+
sw.WriteLine("-----------------------------------------");
sw.WriteLine("QR.bmp");
- sw.WriteLine("此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点");
- sw.WriteLine("v2rayN下载网址:https://github.com/2dust/v2rayN/releases");
- sw.WriteLine("Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5");
- sw.WriteLine("v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases");
- sw.WriteLine("v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang");
- sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine05").ToString());
+
+ //****** "v2rayN下载网址:https://github.com/2dust/v2rayN/releases" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine06").ToString());
+
+ //****** "Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine07").ToString());
+
+ //****** "v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine08").ToString());
+
+ //****** "v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine09").ToString());
+
+ //****** "Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine10").ToString());
sw.WriteLine("-----------------------------------------");
sw.WriteLine("url.txt");
- sw.WriteLine("此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址");
+
+ //****** "此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine11").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{TextBoxHostAddress.Text}");
- sw.WriteLine($"端口(Port):{TextBoxPort.Text}");
- sw.WriteLine($"用户ID(uuid):{TextBoxUUID.Text}");
- sw.WriteLine($"额外ID:{TextBoxUUIDextra.Text}");
- sw.WriteLine($"加密方式:{TextBoxEncryption.Text}");
- sw.WriteLine($"传输协议:{TextBoxTransmission.Text}");
- sw.WriteLine($"伪装类型:{TextBoxCamouflageType.Text}");
- sw.WriteLine($"是否使用TLS:{TextBoxTLS.Text}");
- sw.WriteLine($"host:{TextBoxHostAddress.Text}");
- sw.WriteLine($"路径(Path):{TextBoxPath.Text}");
- sw.WriteLine($"mKCP/QUIC密钥:{TextBoxQuicKey.Text}");
+
+ //****** "服务器通用连接配置参数" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtV2RayExplainLine12").ToString());
+ //sw.Write(Application.Current.FindResource("readmeTxtV2RayExplain").ToString());
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxHostAddress.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxPort.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockUserUUID").ToString() + $"{TextBoxUUID.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockV2RayAlterId").ToString() + $"{TextBoxUUIDextra.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockEncryption").ToString() + $"{TextBoxEncryption.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockTransferProtocol").ToString() + $"{TextBoxTransmission.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockCamouflageType").ToString() + $"{TextBoxCamouflageType.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockIsOrNotTLS").ToString() + $"{TextBoxTLS.Text}");
+ sw.WriteLine("host:" + $"{TextBoxHostAddress.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockClientPath").ToString() + $"{TextBoxPath.Text}");
+ sw.WriteLine(Application.Current.FindResource("TextBlockClientMkcpQuicKey").ToString() + $"{TextBoxQuicKey.Text}");
+
}
@@ -538,29 +565,57 @@ namespace ProxySU
//File.Delete(@"config\config.json");//删除该文件
}
- using (StreamWriter sw = new StreamWriter($"trojan-go_config\\{saveFileFolder}\\说明.txt"))
+ using (StreamWriter sw = new StreamWriter($"trojan-go_config\\{saveFileFolder}\\readme.txt"))
{
sw.WriteLine("config.json");
- sw.WriteLine("此文件为Trojan-go官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080");
- sw.WriteLine("Trojan-go官方网站:https://github.com/p4gefau1t/trojan-go");
- sw.WriteLine("Trojan-go官方程序下载地址:https://github.com/p4gefau1t/trojan-go/releases");
- sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("QR.bmp");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点(Trojan-Go的WebSocket模式暂不支持)");
- sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
- sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
- sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ //****** "此文件为Trojan-go官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine01").ToString());
+
+ //****** "Trojan-go官方网站:https://github.com/p4gefau1t/trojan-go" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine02").ToString());
+
+ //sw.WriteLine("Trojan-go官方程序下载地址:https://github.com/p4gefau1t/trojan-go/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine03").ToString());
+
+ //sw.WriteLine("下载相应版本,Windows选择Trojan-go-x.xx-win.zip,解压后提取trojan-go.exe。与config.json放在同一目录,运行trojan-go.exe即可。");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine04").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("url.txt");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址(Trojan-Go的WebSocket模式暂不支持)");
+ sw.WriteLine("QR.bmp");
+
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点(Trojan-Go的WebSocket模式暂不支持)");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine05").ToString());
+
+ //sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine06").ToString());
+
+ //sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine07").ToString());
+
+ //sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine08").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{TextBoxTrojanGoServerHost.Text}");
- sw.WriteLine($"端口(Port):{TextBoxTrojanGoServerPort.Text}");
- sw.WriteLine($"密钥:{TextBoxTrojanGoServerPassword.Text}");
- sw.WriteLine($"WebSocket路径:{TextBoxTrojanGoWSPath.Text}");
+ sw.WriteLine("url.txt");
+
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址(Trojan-Go的WebSocket模式暂不支持)");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine09").ToString());
+ sw.WriteLine("-----------------------------------------\n");
+
+ //sw.WriteLine("服务器通用连接配置参数");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojan-goExplainLine10").ToString());
+
+ //****** 服务器地址(address): ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}");
+
+ //****** 端口(port): ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}");
+
+ //****** 密码: ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}");
+
+ //****** WebSocket路径: ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}");
}
@@ -598,28 +653,76 @@ namespace ProxySU
//File.Delete(@"config\config.json");//删除该文件
}
- using (StreamWriter sw = new StreamWriter($"trojan_config\\{saveFileFolder}\\说明.txt"))
+ using (StreamWriter sw = new StreamWriter($"trojan_config\\{saveFileFolder}\\readme.txt"))
{
sw.WriteLine("config.json");
- sw.WriteLine("此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
- sw.WriteLine("Trojan官方网站:https://trojan-gfw.github.io/trojan/");
- sw.WriteLine("Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases");
- sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
- sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("QR.bmp");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
- sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
- sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
- sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ //****** "此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine01").ToString());
+
+ //****** "Trojan官方网站:https://trojan-gfw.github.io/trojan/" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine02").ToString());
+
+ //sw.WriteLine("Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine03").ToString());
+
+ //sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine04").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("url.txt");
- sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址");
+ sw.WriteLine("QR.bmp");
+
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine05").ToString());
+
+ //sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine06").ToString());
+
+ //sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine07").ToString());
+
+ //sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine08").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{TextBoxTrojanServerHost.Text}");
- sw.WriteLine($"端口(Port):{TextBoxTrojanServerPort.Text}");
- sw.WriteLine($"密钥:{TextBoxTrojanServerPassword.Text}");
+ sw.WriteLine("url.txt");
+
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine09").ToString());
+ sw.WriteLine("-----------------------------------------\n");
+
+ //sw.WriteLine("服务器通用连接配置参数");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtTrojanExplainLine10").ToString());
+
+ //****** 服务器地址(address): ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxTrojanGoServerHost.Text}");
+
+ //****** 端口(port): ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerPort").ToString() + $"{TextBoxTrojanGoServerPort.Text}");
+
+ //****** 密码: ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxTrojanGoServerPassword.Text}");
+ //sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoWebSocketPath").ToString() + $"{TextBoxTrojanGoWSPath.Text}");
+
+ //sw.WriteLine("config.json");
+ //sw.WriteLine("此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
+ //sw.WriteLine("Trojan官方网站:https://trojan-gfw.github.io/trojan/");
+ //sw.WriteLine("Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases");
+ //sw.WriteLine("下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。");
+ //sw.WriteLine("-----------------------------------------\n");
+ //sw.WriteLine("QR.bmp");
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
+ //sw.WriteLine("Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases");
+ //sw.WriteLine("igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases");
+ //sw.WriteLine("Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。");
+
+ //sw.WriteLine("-----------------------------------------\n");
+ //sw.WriteLine("url.txt");
+ //sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址");
+ //sw.WriteLine("-----------------------------------------\n");
+ //sw.WriteLine("服务器通用连接配置参数");
+ //sw.WriteLine($"地址(address):{TextBoxTrojanServerHost.Text}");
+ //sw.WriteLine($"端口(Port):{TextBoxTrojanServerPort.Text}");
+ //sw.WriteLine($"密钥:{TextBoxTrojanServerPassword.Text}");
}
@@ -659,14 +762,29 @@ namespace ProxySU
//File.Delete(@"config\config.json");//删除该文件
}
- using (StreamWriter sw = new StreamWriter($"naive_config\\{saveFileFolder}\\说明.txt"))
+ using (StreamWriter sw = new StreamWriter($"naive_config\\{saveFileFolder}\\readme.txt"))
{
sw.WriteLine("config.json");
- sw.WriteLine("此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
- sw.WriteLine("NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy");
- sw.WriteLine("NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases");
- sw.WriteLine("下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。");
+
+ //****** "此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine01").ToString());
+
+ //****** "NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy" ******
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine02").ToString());
+
+ //sw.WriteLine("NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine03").ToString());
+
+ //sw.WriteLine("下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine04").ToString());
+
+ //sw.WriteLine("此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080");
+ //sw.WriteLine("NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy");
+ //sw.WriteLine("NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases");
+ //sw.WriteLine("下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。");
+
sw.WriteLine("-----------------------------------------\n");
+
//sw.WriteLine("其他平台的客户端,暂未发布");
//sw.WriteLine("QR.bmp");
//sw.WriteLine("此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点");
@@ -676,14 +794,26 @@ namespace ProxySU
//sw.WriteLine("-----------------------------------------\n");
sw.WriteLine("url.txt");
- sw.WriteLine("此文件为NaiveGUI(windows)复制粘贴导入节点的网址");
- sw.WriteLine("NaiveGUI(windows)下载网址:https://github.com/ExcitedCodes/NaiveGUI/releases");
+
+ //sw.WriteLine("此文件为NaiveGUI(windows)复制粘贴导入节点的网址");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine05").ToString());
+
+ //sw.WriteLine("NaiveGUI(windows)下载网址:https://github.com/ExcitedCodes/NaiveGUI/releases");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine06").ToString());
sw.WriteLine("-----------------------------------------\n");
- sw.WriteLine("服务器通用连接配置参数");
- sw.WriteLine($"地址(address):{TextBoxNaiveServerHost.Text}");
- sw.WriteLine($"用户名:{TextBoxNaiveUser.Text}");
- sw.WriteLine($"密钥:{TextBoxNaivePassword.Text}");
+
+ //sw.WriteLine("服务器通用连接配置参数");
+ sw.WriteLine(Application.Current.FindResource("readmeTxtNaiveProxyExplainLine07").ToString());
+
+ //****** 服务器地址(address): ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockServerAddress").ToString() + $"{TextBoxNaiveServerHost.Text}");
+
+ //****** 用户名:******
+ sw.WriteLine(Application.Current.FindResource("TextBlockHostUser").ToString() + $"{TextBoxNaiveUser.Text}");
+
+ //****** 密码: ******
+ sw.WriteLine(Application.Current.FindResource("TextBlockTrojanGoPassword").ToString() + $"{TextBoxNaivePassword.Text}");
}
diff --git a/ProxySU/Translations/ProxySU.en-US.xaml b/ProxySU/Translations/ProxySU.en-US.xaml
index b145274..8666dc7 100644
--- a/ProxySU/Translations/ProxySU.en-US.xaml
+++ b/ProxySU/Translations/ProxySU.en-US.xaml
@@ -2,7 +2,307 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ProxySU.Translations"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
- Deployment
+
+ Language:
+ application deployment
+ Resource Tools
+ Host:
+ IP or domain name (cannot be empty)
+ Port:
+ User name:
+ Password:
+ Waiting for installation and deployment
+ System Tools
+ V2Ray template library
+ V2ray one-key installation
+ Upgrade V2Ray
+ Cancel
+ Trojan-Go parameter settings
+ Trojan-Go one-click installation
+ Upgrade Trojan-Go
+ Cancel
+
+ Parameter settings
+ Mode: Trojan+TLS+Caddy
+ Server address (domain name):
+ Port: 443
+ Domain name cannot be empty
+ Password:
+ Update
+ Trojan one-click installation
+ Upgrade Trojan
+ Cancel
+
+ Mode: NaiveProxy+TLS+Caddy
+ random
+ NaiveProxy one-click installation
+ Cancel
+
+ Proofreading time
+ Release port 80/443
+ Enable BBR
+
+ Homepage
+ Forward
+ Back
+ Due to well-known reasons, loading is slow at certain times, please be patient
+
+ Trojan-go template library
+ http/2 transmission, Caddy2 camouflage website, anti-recognition, CDN of CloudFlare is not currently supported
+ Use WebSocket transmission, Caddy2 camouflage website, anti-identification, support CloudFlare CDN
+ Parameter settings
+ Domain name:
+ Port: 443
+ Password:
+ Use the existing password and paste it directly into the box
+ WebSocket path:
+ OK
+ Cancel
+
+ V2Ray template library
+ Popular plan
+ TCP transmission protocol
+ WebSocket transmission protocol
+ Http/2 transmission protocol
+ mKCP transmission protocol
+ QUIC transmission protocol
+ Parameter settings
+ Server port:
+ Random selection
+ If TLS encryption is used, please keep the default port 443
+ Use the existing UUID and paste it directly into the box
+ mKCP/QUIC key
+ Enable the mKCP key to enhance anti-recognition, leave it blank to disable it. Version 4.24.2 or above is required. V2rayN does not currently support
+ Path:
+ Domain name:
+ Mask a website:
+ Set this item to increase the concealment of the agent (may be empty)
+ Strong stability, Caddy2 as the front, hidden proxy feature, recognized as https traffic to the website, the strongest anti-blocking recognition, domain name is required, CDN support
+ based on HTTP/2 transmission. Completely implemented in accordance with the HTTP/2 standard, with Caddy2 as the front, hidden proxy features, H2C protocol forwarding to V2Ray, domain name is required, and CloudFlare CDN is not currently supported
+ 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
+ Data encrypted transmission, the transmission protocol uses TLS, it will be recognized as TLS traffic, not equivalent to https traffic characteristics (domain name required)
+ TCP+TLS (self-signed certificate)
+ Data encrypted transmission, the transmission protocol uses TLS, it will be recognized as TLS traffic, not equivalent to https traffic characteristics (no domain name required)
+ Shadowrocket (ios) needs to manually open the "Allow Unsafe" option
+ Lightweight protocol VLESS, occupies less host resources, data TLS encrypted transmission, and Caddy2 is used as a disguised website on the node. Suitable for low-profile VPS, or shared nodes by multiple people, the server client version requires 4.27+ (domain name required)
+ Data encrypted transmission, the transmission protocol uses WebSocket, if TLS is not enabled, it will be recognized as WebSocket traffic.
+ Data encrypted transmission, the transmission protocol uses WebSocket, and TLS is enabled, it will be recognized as TLS traffic. (Domain name required)
+ WebSocket+TLS (self-signed certificate)
+ Data encrypted transmission, the transmission protocol uses WebSocket, and TLS is enabled, and it will be recognized as TLS traffic. (No domain name required)
+ The transmission method based on HTTP/2. It is fully implemented in accordance with the HTTP/2 standard and requires a domain name
+ HTTP2 (self-signed certificate)
+ The transmission method based on HTTP/2. It is fully implemented in accordance with the HTTP/2 standard, uses a self-signed certificate, and does not require a domain name
+ mKCP (no camouflage)
+ Encrypted data transmission to increase bandwidth usage and reduce delay, udp protocol, no camouflage, will be recognized as udp traffic
+ Same as mKCP (without camouflage), add disguised as SRTP packet, it will be recognized as video call data (such as FaceTime)
+ Same as mKCP (without camouflage), adding a uTP packet disguised as a uTP data packet will be recognized as BT download data
+ Same as mKCP (no camouflage), adding data packets disguised as WeChat video calls
+ Same as mKCP (without camouflage), add disguised as DTLS 1.2 data packet
+ Same as mKCP (without camouflage), with the addition of disguised as WireGuard packets. (Not the real WireGuard protocol)
+ Reminder: Shadowrocket currently does not support QUIC transmission mode.
+ QUIC (no camouflage)
+ Data encrypted transmission, no disguise will be recognized as udp traffic, produced by Google, advantages: reduced delay, multiplexing, connection migration
+ Same as QUIC (no camouflage), adding a packet disguised as SRTP, it will be recognized as video call data (such as FaceTime)
+ Same as QUIC (without camouflage), add disguised as uTP data packet, it will be recognized as BT download data
+ Same as QUIC (no camouflage), adding data packets disguised as WeChat video calls
+ Same as QUIC (without camouflage), add disguised as DTLS 1.2 packet
+ Same as QUIC (without camouflage), adding a pretend to be a WireGuard packet. (Not the real WireGuard protocol)
+
+ Synchronize network time
+ Correct the remote host time to the network time. Note: The time of the local computer must also be synchronized with the network time, otherwise the local computer V2ray may have a connection error
Recommendation: First use this method to proofread time
+ Sync local time
+ Synchronize the remote host’s time to the local time. Note: The local computer’s time must be accurate and synchronized with the network time, otherwise there may be connection errors in other clients
Use this method when you can’t check the time when using the network
+ Update the local time
+ Synchronize the local computer time with the network time.
Note: To use this function, you must run this program as an administrator
+ Detection time error
+ Proofreading time
+
+ Client configuration parameters
+ Server address (address):
+ Port (port):
+ User ID(uuid):
+ Additional ID:
+ The default is 16, and you can fill in a value not exceeding 64. If the client does not have this option, leave it blank
+ Encryption method:
+ Transfer Protocol:
+ Camouflage type:
+ Whether to use TLS:
+ Path (Path):
+ mKCP/QUIC key:
+ default auto
+ QR code/URL
+ The above parameters can be entered into the client manually or by scanning. The configuration and related files used for the official client have been stored in the directory. Click the OK button to open
+ QR code and URL link can be used
v2rayN(windows)
Trojan-QT5(windows)
Qv2ray(windows)
Shadowrocket(ios)
v2rayNG(Android)
Import v2ray node
Note: The Vless protocol requires manual input of configuration parameters, and the QR code and URL are invalid
+ " can be used for ShadowRocket (ios), ignore (Android), Trojan-QT5 (windows) to scan codes and import URLs. Note: some clients may not support WebSocket mode ."
+ "Can be used for ShadowRocket (ios), ignore (Android), Trojan-QT5 (windows) to scan codes and import URLs. Note: Some clients may not support WebSocket mode."
+ URL import link for NaiveGUI (windows)
+
+ Host address, host port, and user name are required and cannot be empty!!
+ The login password is required and cannot be empty!!
+ The key file is required and cannot be empty!!
+ If a proxy is selected, the proxy address and port cannot be empty!
+ If the proxy needs to log in, the user name and password for proxy login cannot be empty!
+ The remote host connection information is wrong, please check!
+ Please select a configuration template first!
+ Logging in to the remote host...
+ The host login is successful!
+ Detect whether it is running under root permissions...
+ Please use an account with root permissions to log in to the host! !
+ Detection result: OK!
+ Check whether the system has been installed
+ The remote host has been installed
+ , is it mandatory to reinstall?
+ installation canceled, exit
+ Selected mandatory installation
+ Test result: not installed
+ Check whether the system meets the installation requirements...
+ The current system kernel version is
+ , V2ray requires the kernel to be 2.6.23 and above. Please upgrade the kernel and install again!
+ The system kernel version does not meet the requirements, and the installation failed! !
+ The system lacks necessary installation components such as: apt||dnf||yum||zypper||Syetemd, the host system is recommended to use: CentOS 7/8, Debian 8/9/10 ,Ubuntu 16.04 and above
+ The system environment does not meet the requirements, and the installation fails! !
+ Test result: OK!
+ It is detected that the system has SELinux enabled and it is working in strict mode. It needs to be changed to relaxed mode! Modifying...
+ The modification is complete!
+ Proofreading time...
+ The difference between the local time and the remote host’s time exceeds the limit (90 seconds), please use'System Tools-->Time Correction' to verify the time before setting
+ Time comparison failed...
+ The time difference meets the requirements, OK!
+ is checking whether the domain name is resolved to the IP of the current VPS...
+ The resolution is correct! OK!
+ The domain name could not be correctly resolved to the IP of the current VPS! Installation failed!
+ The domain name cannot be correctly resolved to the IP of the current VPS, please check! If the resolution setting is correct, please wait for it to take effect before retrying the installation. If the domain name uses CDN, please close it first!
+ Detect port occupancy...
+ If one or all of the 80/443 ports are occupied, will the program occupying 80/443 ports be forcibly stopped?
+ The port is occupied and the installation failed...
+ is releasing port 80/443...
+ The release of port 80/443 is complete!
+ Test result: Not occupied!
+ The system environment has been tested and the installation requirements are met, and the deployment begins...
+ Open the corresponding port of the firewall...
+ Installing
+ The installation failed, the official script runs incorrectly!
+ The installation is successful!
+ After installation, upload the configuration file......
+ Installing acme.sh......
+ acme.sh is installed successfully!
+ acme.sh installation failed! The reason is unknown, please ask the developer!
+ Apply for domain name certificate...
+ The certificate application is successful!
+ Certificate application failed! The reason is unknown, please ask the developer!
+ Install the certificate to
+ The certificate is successfully installed to
+ The certificate is installed to
+ failed, the reason is unknown, you can ask the developer!
+ Install Caddy...
+ Test result: Caddy is not installed!
+ The installation of Caddy failed!
+ Caddy installed successfully!
+ is upgrading the Caddy v2.2.0 beta version for Http2Web mode!
+ Upload Caddy configuration file...
+ The Caddy configuration file is uploaded successfully, OK!
+ Starting Caddy...
+ Caddy started successfully!
+ Caddy failed to start!
+ Starting Caddy (second attempt)!
+ Caddy failed to start (second time)! Exit the installation!
+ Caddy failed to start, the reason is unknown! Please ask the developer!
+ Starting
+ Startup is successful!
+ Startup failed!
+ is trying to start the second time
+ failed to start (second time)! Exit the installation!
+ Start failed, the reason is unknown! Please ask the developer!
+ BBR test...
+ Enable BBR...
+ BBR has been enabled!
+ The system does not meet the conditions for enabling BBR, and the enabling failed!
+ Generate client configuration...
+ The installation is successful, I wish you a happy playing! !
+ Host login failed!
+ An error occurred!
+ Wrong password or wrong username!
+ Please check whether the host address and port are correct, if it passes the proxy, please check whether the proxy is working properly
+ The selected key file is wrong or the format is wrong!
+ Login using the key, the key file is wrong or the user name is wrong!
+ The host address is wrong. If a proxy is used, it may also be the wrong port to connect to the proxy!
+ Exit! Reason: The remote host is not installed
+ V2Ray using the old installation script is detected...
+ The V2Ray using the old installation script is detected. Do you want to uninstall the old version and reinstall it with the new installation script?
+ Uninstalling the old version...
+ Uninstall the old version, OK!
+ Install the new version...
+ Migrate the original configuration file.
+ has been updated to the latest version.
+ The current version of the remote host is: v
+ The latest version is:
+ Is it upgraded to the latest version?
+ Upgrading to the latest version
+ The upgrade is successful! It is currently the latest version!
+ The upgrade failed. The reason is unknown. Please ask the developer!
+ Upgrade is cancelled, exit!
+ The remote host is currently the latest version:
+ No need to upgrade! drop out!
+ The domain name cannot be empty, please check the relevant parameter settings!
+ Please install in x86_64 system
+ Back up the Trojan configuration file...
+ Restore the Trojan configuration file...
+ "Caddy has been installed on the remote host, but I’m not sure whether it supports forward proxy. Do I force a reinstallation?"
+ Please uninstall Caddy or reinstall the VPS system first!
+ Installing dependent software......
+ The installation is complete! OK!
+ Installing Caddy.....
+ The server is being upgraded for NaiveProxy
+ The upgrade is complete, OK!
+ Optimizing network parameters...
+
+ 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/
+ v2ray official program download address: https://github.com/v2ray/v2ray-core/releases
+ download the corresponding version, Windows select v2ray-windows-64.zip or v2ray-windows-32.zip, extract v2ctl.exe and v2ray.exe after decompression. Put it in the same directory as config.json, just run v2ray.exe.
+ This file is v2rayN, Trojan-QT5, v2rayNG(Android), Shadowrocket(ios) scan code import node
+ v2rayN download URL: https://github.com/2dust/v2rayN/releases
+ Trojan-QT5: https://github.com/Trojan-Qt5/Trojan-Qt5
+ v2rayNG(Android) download URL: https://github.com/2dust/v2rayNG/releases
+ v2rayNG (Android) download URL on Google Play: https://play.google.com/store/apps/details?id=com.v2ray.ang
+ Shadowrocket(ios) download, you need to use the AppleID of the foreign region. Please Google method yourself.
+ This file is v2rayN, Trojan-QT5, v2rayNG(Android), Shadowrocket(ios) copy and paste the vmess URL of the imported node
+ Server general connection configuration parameters
+
+ This file is the client configuration file used by the official Trojan-go program, configured in global mode, http and socks5 address: 127.0.0.1:1080
+ Trojan-go official website: https://github.com/p4gefau1t/trojan-go
+ Trojan-go official program download address: https://github.com/p4gefau1t/trojan-go/releases
+ Download the corresponding version, select Trojan-go-x.xx-win.zip for Windows, extract trojan-go.exe after decompression. Put it in the same directory as config.json, just run trojan-go.exe.
+ This file is for Trojan-QT5 (windows), ignore (Android), Shadowrocket (ios) scan code import node (Trojan-Go’s WebSocket mode is not currently supported)
+ Trojan-QT5 (windows) download URL: https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter (Android) download URL: https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios) download, you need to use the AppleID of the foreign region. Please Google method yourself.
+ This file is Trojan-QT5 (windows), ignore (Android), Shadowrocket (ios) copy and paste the URL of the imported node (Trojan-Go’s WebSocket mode is not currently supported)
+ Server general connection configuration parameters
+
+ This file is the client configuration file used by the official Trojan program. It is configured in global mode, http and socks5 address: 127.0.0.1:1080
+ Trojan official website: https://trojan-gfw.github.io/trojan/
+ Trojan official program download address: https://github.com/trojan-gfw/trojan/releases
+ Download the corresponding version, select Trojan-x.xx-win.zip for Windows, extract trojan.exe after decompression. Put it in the same directory as config.json, just run trojan.exe.
+ This file is Trojan-QT5 (windows), ignore (Android), Shadowrocket (ios) scan code import node
+ Trojan-QT5 (windows) download URL: https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter (Android) download URL: https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios) download, you need to use the AppleID of the foreign region. Please Google method yourself.
+ This file is Trojan-QT5 (windows), ignore (Android), Shadowrocket (ios) copy and paste the URL of the imported node
+ Server general connection configuration parameters
+
+ This file is the client configuration file used by the official NaiveProxy program, configured in global mode, socks5 address: 127.0.0.1:1080
+ NaiveProxy official website: https://github.com/klzgrad/naiveproxy
+ NaiveProxy official program download address: https://github.com/klzgrad/naiveproxy/releases
+ download the corresponding version, select naiveproxy-x.xx-win.zip for Windows, extract naive.exe after decompression. Put it in the same directory as config.json, just run naive.exe.
+ This file is NaiveGUI (windows) copy and paste the URL of the imported node
+ NaiveGUI(windows) download URL: https://github.com/ExcitedCodes/NaiveGUI/releases
+ Server general connection configuration parameters
+
+
+
+ -->
+ 界面语言:
应用布署
资源工具
主机:
@@ -19,6 +21,7 @@
Trojan-Go一键安装
升级Trojan-Go
取消
+
参数设置
模式:Trojan+TLS+Caddy
服务器地址(域名):
@@ -29,28 +32,33 @@
Trojan一键安装
升级Trojan
取消
+
模式:NaiveProxy+TLS+Caddy
随机
NaiveProxy一键安装
取消
+
校对时间
释放80/443端口
启用BBR
+
主页
前进
后退
由于众所周知的原因,在某些时候,加载缓慢,请耐心等待一下
+
Trojan-go 模板库
http/2传输,Caddy2伪装网站,抗识别,暂不支持CloudFlare的CDN
使用WebSocket传输,Caddy2伪装网站,抗识别,支持CloudFlare的CDN
参数设置
- 域名:
- 端口:443
- 密码:
+ 域名:
+ 端口: 443
+ 密码:
使用已有密码,直接粘贴到框中
- WebSocket路径:
+ WebSocket路径:
确定
取消
+
V2Ray 模板库
热门方案
TCP传输协议
@@ -101,7 +109,36 @@
同QUIC(无伪装),增加伪装成微信视频通话的数据包
同QUIC(无伪装),增加伪装成 DTLS 1.2 数据包
同QUIC(无伪装),增加伪装成 WireGuard 数据包。(并不是真正的 WireGuard 协议)
-
+
+ 同步网络时间
+ 将远程主机时间校正为网络时间,注意:本机电脑的时间必须也是与网络时间同步的,否则本机电脑V2ray有可能连接出错
推荐:优先使用此方法校对时间
+ 同步本机时间
+ 将远程主机时间同步为本地时间,注意:本机电脑的时间必须是准确的,与网络时间同步的,否则其他客户端中,有可能连接出错
使用网络校时无法校对时间时,使用此种方法
+ 更新本机时间
+ 将本机电脑时间与网络时间同步。
注意:使用此项功能,必须以管理员身份运行本程序
+ 检测时间误差
+ 校对时间
+
+ 客户端配置参数
+ 服务器地址(address):
+ 端口(port):
+ 用户ID(uuid):
+ 额外ID:
+ 默认16,可以填不超过64的值,客户端没有此选项可不填
+ 加密方式:
+ 传输协议:
+ 伪装类型:
+ 是否使用TLS:
+ 路径(Path):
+ mKCP/QUIC密钥:
+ 默认auto
+ 二维码/URL
+ 以上参数可以手动或扫描输入客户端,用于官方客户端的配置和相关文件已经存放入目录下,点击 确定 按扭可打开
+ 二维码和URL链接可用于
v2rayN(windows)
Trojan-QT5(windows)
Qv2ray(windows)
Shadowrocket(ios)
v2rayNG(Android)
导入v2ray节点
注意:Vless协议需要手动输入配置参数,二维码和URL无效
+ "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。"
+ "可用于ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 扫码和导入url。注意:有的客户端可能不支持WebSocket模式。"
+ 用于NaiveGUI(windows)的URL导入链接
+
主机地址、主机端口、用户名为必填项,不能为空!!
登录密码为必填项,不能为空!!
密钥文件为必填项,不能为空!!
@@ -113,7 +150,7 @@
主机登录成功!
检测是否运行在root权限下...
请使用具有root权限的账户登录主机!!
- 检测结果:OK!
+ 检测结果:OK!
检测系统是否已经安装
远程主机已安装
,是否强制重新安装?
@@ -148,7 +185,7 @@
正在安装
安装失败,官方脚本运行出错!
安装成功!
- 上传配置文件......
+ 安装完毕,上传配置文件......
正在安装acme.sh......
acme.sh安装成功!
acme.sh安装失败!原因未知,请向开发者提问!
@@ -157,8 +194,10 @@
证书申请失败!原因未知,请向开发者提问!
安装证书到
证书成功安装到
- 证书安装到V2ray失败,原因未知,可以向开发者提问!
+ 证书安装到
+ 失败,原因未知,可以向开发者提问!
安装Caddy......
+ 检测结果:未安装Caddy!
安装Caddy失败!
Caddy安装成功!
正在为Http2Web模式升级Caddy v2.2.0测试版!
@@ -170,18 +209,18 @@
正在启动Caddy(第二次尝试)!
Caddy启动失败(第二次)!退出安装!
Caddy启动失败,原因未知!请向开发者问询!
- 正在启动V2ray......
- V2ray启动成功!
- V2ray启动失败!
- 正在启动V2ray(第二次尝试)!
- V2ray启动失败(第二次)!退出安装!
- V2Ray启动失败,原因未知!请向开发者问询!
+ 正在启动
+ 启动成功!
+ 启动失败!
+ 正在第二次尝试启动
+ 启动失败(第二次)!退出安装!
+ 启动失败,原因未知!请向开发者问询!
BBR测试......
正在启用BBR......
BBR已经启用了!
系统不满足启用BBR的条件,启用失败!
生成客户端配置......
- V2Ray安装成功,祝你玩的愉快!!
+ 安装成功,祝你玩的愉快!!
主机登录失败!
发生错误!
密码错误或用户名错误!
@@ -189,7 +228,7 @@
所选密钥文件错误或者格式不对!
使用密钥登录,密钥文件错误或用户名错误!
主机地址错误,如果使用了代理,也可能是连接代理的端口错误!
- 远程主机未安装V2ray,退出!
+ 退出!原因:远程主机未安装
检测到使用旧安装脚本的V2Ray......
检测到使用旧安装脚本的V2Ray,是否卸载旧版本并使用新安装脚本重新安装?
正在卸载旧版本......
@@ -206,13 +245,69 @@
升级取消,退出!
远程主机当前已是最新版本:
无需升级!退出!
- 空域名,请检查相关参数设置!
+ 域名不能为空,请检查相关参数设置!
+ 请在x86_64系统中安装
+ 备份Trojan配置文件......
+ 恢复Trojan配置文件......
+ "远程主机已安装Caddy,但不确定是否支持forward proxy,是否强制重新安装?"
+ 请先行卸载Caddy或重装VPS系统!
+ 正在安装依赖的软件......
+ 安装完毕!OK!
+ 正在安装Caddy.....
+ 正在为NaiveProxy升级服务端
+ 升级完毕,OK!
+ 正在优化网络参数......
+
+ 此文件为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、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)扫码导入节点
+ v2rayN下载网址:https://github.com/2dust/v2rayN/releases
+ Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5
+ v2rayNG(Android)下载网址:https://github.com/2dust/v2rayNG/releases
+ v2rayNG(Android)在Google Play下载网址:https://play.google.com/store/apps/details?id=com.v2ray.ang
+ Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。
+ 此文件为v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)复制粘贴导入节点的vmess网址
+ 服务器通用连接配置参数
+
+ 此文件为Trojan-go官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080
+ Trojan-go官方网站:https://github.com/p4gefau1t/trojan-go
+ Trojan-go官方程序下载地址:https://github.com/p4gefau1t/trojan-go/releases
+ 下载相应版本,Windows选择Trojan-go-x.xx-win.zip,解压后提取trojan-go.exe。与config.json放在同一目录,运行trojan-go.exe即可。
+ 此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点(Trojan-Go的WebSocket模式暂不支持)
+ Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。
+ 此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址(Trojan-Go的WebSocket模式暂不支持)
+ 服务器通用连接配置参数
+
+ 此文件为Trojan官方程序所使用的客户端配置文件,配置为全局模式,http与socks5地址:127.0.0.1:1080
+ Trojan官方网站:https://trojan-gfw.github.io/trojan/
+ Trojan官方程序下载地址:https://github.com/trojan-gfw/trojan/releases
+ 下载相应版本,Windows选择Trojan-x.xx-win.zip,解压后提取trojan.exe。与config.json放在同一目录,运行trojan.exe即可。
+ 此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)扫码导入节点
+ Trojan-QT5 (windows)下载网址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter(Android)下载网址:https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios)下载,需要使用国外区的AppleID。请自行谷歌方法。
+ 此文件为Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)复制粘贴导入节点的网址
+ 服务器通用连接配置参数
+
+ 此文件为NaiveProxy官方程序所使用的客户端配置文件,配置为全局模式,socks5地址:127.0.0.1:1080
+ NaiveProxy官方网站:https://github.com/klzgrad/naiveproxy
+ NaiveProxy官方程序下载地址:https://github.com/klzgrad/naiveproxy/releases
+ 下载相应版本,Windows选择naiveproxy-x.xx-win.zip,解压后提取naive.exe。与config.json放在同一目录,运行naive.exe即可。
+ 此文件为NaiveGUI(windows)复制粘贴导入节点的网址
+ NaiveGUI(windows)下载网址:https://github.com/ExcitedCodes/NaiveGUI/releases
+ 服务器通用连接配置参数
-
+
\ No newline at end of file
diff --git a/ProxySU/Translations/ProxySU.zh-TW.xaml b/ProxySU/Translations/ProxySU.zh-TW.xaml
new file mode 100644
index 0000000..27794c0
--- /dev/null
+++ b/ProxySU/Translations/ProxySU.zh-TW.xaml
@@ -0,0 +1,306 @@
+
+
+ 界面語言:
+ 應用佈署
+ 資源工具
+ 主機:
+ IP或域名(不可為空)
+ 端口:
+ 用戶名:
+ 密碼:
+ 等待安裝佈署
+ 系統工具
+ V2Ray模板庫
+ V2ray一鍵安裝
+ 升級V2Ray
+ 取消
+ Trojan-Go參數設置
+ Trojan-Go一鍵安裝
+ 升級Trojan-Go
+ 取消
+
+
+ 參數設置
+ 模式:Trojan+TLS+Caddy
+ 服務器地址(域名):
+ 端口:443
+ 域名不可為空
+ 密碼:
+ 更新
+ Trojan一鍵安裝
+ 升級Trojan
+ 取消
+
+ 模式:NaiveProxy+TLS+Caddy
+ 隨機
+ NaiveProxy一鍵安裝
+ 取消
+
+ 校對時間
+ 釋放80/443端口
+ 啟用BBR
+
+ 主頁
+ 前進
+ 後退
+ 由於眾所周知的原因,在某些時候,加載緩慢,請耐心等待一下
+
+ Trojan-go 模板庫
+ http/2傳輸,Caddy2偽裝網站,抗識別,暫不支持CloudFlare的CDN
+ 使用WebSocket傳輸,Caddy2偽裝網站,抗識別,支持CloudFlare的CDN
+ 參數設置
+ 域名:
+ 端口: 443
+ 密碼:
+ 使用已有密碼,直接粘貼到框中
+ WebSocket路徑:
+ 確定
+ 取消
+
+ V2Ray 模板庫
+ 熱門方案
+ TCP傳輸協議
+ WebSocket傳輸協議
+ Http/2傳輸協議
+ mKCP傳輸協議
+ QUIC傳輸協議
+ 參數設置
+ 服務器端口:
+ 隨機選擇
+ 若使用TLS加密,請保持默認的443端口
+ 使用已有UUID,直接粘貼到框中
+ mKCP/QUIC密鑰
+ 啟用mKCP密鑰,可增強抗識別,留空則禁用,要求版本4.24.2以上,V2rayN暫不支持
+ 路徑:
+ 域名:
+ 偽裝網站:
+ 設置此項可增加代理的隱蔽(可為空)
+ 穩定性強,Caddy2做前置,隱藏代理特徵,被識別為訪問網站的https流量,抗封鎖識別最強,需要域名,支持CDN
+ 基於 HTTP/2 傳輸。完整按 HTTP/2 標準實現,Caddy2做前置,隱藏代理特徵,H2C協議轉發到V2Ray,需要域名,暫不支持CloudFlare的CDN
+ 數據加密傳輸,會被識別為未知的tcp流量
+ TCP+Http偽裝
+ 數據加密傳輸,並做http偽裝,會被識別為http流量,但並不是真正的http訪問
+ 數據加密傳輸,傳輸協議使用TLS,會被識別為TLS流量,不等同於https流量特徵 (需域名)
+ TCP+TLS(自簽證書)
+ 數據加密傳輸,傳輸協議使用TLS,會被識別為TLS流量,不等同於https流量特徵 (無需域名)
+ Shadowrocket (ios)需要手動打開“允許不安全”選項
+ 輕量協議VLESS,佔用更少主機資源,數據TLS加密傳輸,用Caddy2在節點上做偽裝網站。適合配置低的VPS,或多人共用節點,服務端客戶端版本要求4.27+ (需域名)
+ 數據加密傳輸,傳輸協議使用WebSocket,未啟用TLS,將被識別為WebSocket流量。
+ 數據加密傳輸,傳輸協議使用WebSocket,啟用TLS,將被識別為TLS流量。 (需要域名)
+ WebSocket+TLS(自簽證書)
+ 數據加密傳輸,傳輸協議使用WebSocket,啟用TLS,將被識別為TLS流量。 (無需域名)
+ 基於 HTTP/2 的傳輸方式。它完整按照 HTTP/2 標準實現,需要域名
+ HTTP2(自簽證書)
+ 基於 HTTP/2 的傳輸方式。它完整按照 HTTP/2 標準實現,使用自簽名證書,不需要域名
+ mKCP(無偽裝)
+ 數據加密傳輸,以增加帶寬佔用,減少延遲,udp協議,無偽裝,會被識別為udp流量
+ 同mKCP(無偽裝),增加偽裝成 SRTP 數據包,會被識別為視頻通話數據(如 FaceTime)
+ 同mKCP(無偽裝),增加偽裝成 uTP 數據包,會被識別為 BT 下載數據
+ 同mKCP(無偽裝),增加偽裝成微信視頻通話的數據包
+ 同mKCP(無偽裝),增加偽裝成 DTLS 1.2 數據包
+ 同mKCP(無偽裝),增加偽裝成 WireGuard 數據包。 (並不是真正的 WireGuard 協議)
+ 提醒:Shadowrocket目前暫不支持QUIC的傳輸模式。
+ QUIC(無偽裝)
+ 數據加密傳輸,無偽裝會被識別為udp流量,谷歌出品,優點:減少延遲、多路復用、連接遷移
+ 同QUIC(無偽裝),增加偽裝成 SRTP 數據包,會被識別為視頻通話數據(如 FaceTime)
+ 同QUIC(無偽裝),增加偽裝成 uTP 數據包,會被識別為 BT 下載數據
+ 同QUIC(無偽裝),增加偽裝成微信視頻通話的數據包
+ 同QUIC(無偽裝),增加偽裝成 DTLS 1.2 數據包
+ 同QUIC(無偽裝),增加偽裝成 WireGuard 數據包。 (並不是真正的 WireGuard 協議)
+
+ 同步網絡時間
+ 將遠程主機時間校正為網絡時間,注意:本機電腦的時間必須也是與網絡時間同步的,否則本機電腦V2ray有可能連接出錯
推薦:優先使用此方法校對時間
+ 同步本機時間
+ 將遠程主機時間同步為本地時間,注意:本機電腦的時間必須是準確的,與網絡時間同步的,否則其他客戶端中,有可能連接出錯
使用網絡校時無法校對時間時,使用此種方法
+ 更新本機時間
+ 將本機電腦時間與網絡時間同步。
注意:使用此項功能,必須以管理員身份運行本程序
+ 檢測時間誤差
+ 校對時間
+
+ 客戶端配置參數
+ 服務器地址(address):
+ 端口(port):
+ 用戶ID(uuid):
+ 額外ID:
+ 默認16,可以填不超過64的值,客戶端沒有此選項可不填
+ 加密方式:
+ 傳輸協議:
+ 偽裝類型:
+ 是否使用TLS:
+ 路徑(Path):
+ mKCP/QUIC密鑰:
+ 默認auto
+ 二維碼/URL
+ 以上參數可以手動或掃描輸入客戶端,用於官方客戶端的配置和相關文件已經存放入目錄下,點擊 確定 按扭可打開
+ 二維碼和URL鏈接可用於
v2rayN(windows)
Trojan-QT5(windows)
Qv2ray(windows)
Shadowrocket(ios)
v2rayNG(Android)
導入v2ray節點
注意:Vless協議需要手動輸入配置參數,二維碼和URL無效
+ "可用於ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 掃碼和導入url。注意:有的客戶端可能不支持WebSocket模式。"
+ "可用於ShadowRocket (ios)、igniter(Android)、Trojan-QT5 (windows) 掃碼和導入url。注意:有的客戶端可能不支持WebSocket模式。"
+ 用於NaiveGUI(windows)的URL導入鏈接
+
+ 主機地址、主機端口、用戶名為必填項,不能為空!!
+ 登錄密碼為必填項,不能為空!!
+ 密鑰文件為必填項,不能為空!!
+ 如果選擇了代理,則代理地址與端口不能為空!
+ 如果代理需要登錄,則代理登錄的用戶名與密碼不能為空!
+ 遠程主機連接信息有誤,請檢查!
+ 請先選擇配置模板!
+ 正在登錄遠程主機......
+ 主機登錄成功!
+ 檢測是否運行在root權限下...
+ 請使用具有root權限的賬戶登錄主機! !
+ 檢測結果:OK!
+ 檢測系統是否已經安裝
+ 遠程主機已安裝
+ ,是否強制重新安裝?
+ 安裝取消,退出
+ 已選擇強制安裝
+ 檢測結果:未安裝
+ 檢測系統是否符合安裝要求......
+ 當前系統內核版本為
+ ,V2ray要求內核為2.6.23及以上。請升級內核再安裝!
+ 系統內核版本不符合要求,安裝失敗! !
+ 系統缺乏必要的安裝組件如:apt||dnf||yum||zypper||Syetemd,主機系統推薦使用:CentOS 7/8,Debian 8/9/10 ,Ubuntu 16.04及以上版本
+ 系統環境不滿足要求,安裝失敗! !
+ 檢測結果:OK!
+ 檢測到系統啟用SELinux,且工作在嚴格模式下,需改為寬鬆模式!修改中......
+ 修改完畢!
+ 校對時間......
+ 本地時間與遠程主機時間相差超過限制(90秒),請先用 '系統工具-->時間校對' 校對時間後再設置
+ 時間較對失敗......
+ 時間差符合要求,OK!
+ 正在檢測域名是否解析到當前VPS的IP上......
+ 解析正確! OK!
+ 域名未能正確解析到當前VPS的IP上!安裝失敗!
+ 域名未能正確解析到當前VPS的IP上,請檢查!若解析設置正確,請等待生效後再重試安裝。如果域名使用了CDN,請先關閉!
+ 檢測端口占用情況......
+ 80/443端口之一,或全部被佔用,將強制停止佔用80/443端口的程序?
+ 端口被佔用,安裝失敗......
+ 正在釋放80/443端口......
+ 80/443端口釋放完畢!
+ 檢測結果:未被佔用!
+ 系統環境檢測完畢,符合安裝要求,開始佈署......
+ 開啟防火牆相應端口......
+ 正在安裝
+ 安裝失敗,官方腳本運行出錯!
+ 安裝成功!
+ 安裝完畢,上傳配置文件......
+ 正在安裝acme.sh......
+ acme.sh安裝成功!
+ acme.sh安裝失敗!原因未知,請向開發者提問!
+ 申請域名證書......
+ 證書申請成功!
+ 證書申請失敗!原因未知,請向開發者提問!
+ 安裝證書到
+ 證書成功安裝到
+ 證書安裝到
+ 失敗,原因未知,可以向開發者提問!
+ 安裝Caddy......
+ 檢測結果:未安裝Caddy!
+ 安裝Caddy失敗!
+ Caddy安裝成功!
+ 正在為Http2Web模式升級Caddy v2.2.0測試版!
+ 上傳Caddy配置文件......
+ Caddy配置文件上傳成功,OK!
+ 正在啟動Caddy......
+ Caddy啟動成功!
+ Caddy啟動失敗!
+ 正在啟動Caddy(第二次嘗試)!
+ Caddy啟動失敗(第二次)!退出安裝!
+ Caddy啟動失敗,原因未知!請向開發者問詢!
+ 正在啟動
+ 啟動成功!
+ 啟動失敗!
+ 正在第二次嘗試啟動
+ 啟動失敗(第二次)!退出安裝!
+ 啟動失敗,原因未知!請向開發者問詢!
+ BBR測試......
+ 正在啟用BBR......
+ BBR已經啟用了!
+ 系統不滿足啟用BBR的條件,啟用失敗!
+ 生成客戶端配置......
+ 安裝成功,祝你玩的愉快! !
+ 主機登錄失敗!
+ 發生錯誤!
+ 密碼錯誤或用戶名錯誤!
+ 請檢查主機地址及端口是否正確,如果通過代理,請檢查代理是否正常工作
+ 所選密鑰文件錯誤或者格式不對!
+ 使用密鑰登錄,密鑰文件錯誤或用戶名錯誤!
+ 主機地址錯誤,如果使用了代理,也可能是連接代理的端口錯誤!
+ 退出!原因:遠程主機未安裝
+ 檢測到使用舊安裝腳本的V2Ray......
+ 檢測到使用舊安裝腳本的V2Ray,是否卸載舊版本並使用新安裝腳本重新安裝?
+ 正在卸載舊版本......
+ 卸載舊版本,OK!
+ 安裝新版本......
+ 遷移原配置文件。
+ 已更新到最新版本。
+ 遠程主機當前版本為:v
+ 最新版本為:
+ 是否升級為最新版本?
+ 正在升級到最新版本
+ 升級成功!當前已是最新版本!
+ 升級失敗,原因未知,請向開發者提問!
+ 升級取消,退出!
+ 遠程主機當前已是最新版本:
+ 無需升級!退出!
+ 域名不能為空,請檢查相關參數設置!
+ 請在x86_64系統中安裝
+ 備份Trojan配置文件......
+ 恢復Trojan配置文件......
+ "遠程主機已安裝Caddy,但不確定是否支持forward proxy,是否強制重新安裝?"
+ 請先行卸載Caddy或重裝VPS系統!
+ 正在安裝依賴的軟件......
+ 安裝完畢! OK!
+ 正在安裝Caddy.....
+ 正在為NaiveProxy升級服務端
+ 升級完畢,OK!
+ 正在優化網絡參數......
+
+
+ 此文件為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、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)掃碼導入節點
+ v2rayN下載網址:https://github.com/2dust/v2rayN/releases
+ Trojan-QT5:https://github.com/Trojan-Qt5/Trojan-Qt5
+ v2rayNG(Android)下載網址:https://github.com/2dust/v2rayNG/releases
+ v2rayNG(Android)在Google Play下載網址:https://play.google.com/store/apps/details?id=com.v2ray.ang
+ Shadowrocket(ios)下載,需要使用國外區的AppleID。請自行谷歌方法。
+ 此文件為v2rayN、Trojan-QT5、v2rayNG(Android)、Shadowrocket(ios)複製粘貼導入節點的vmess網址
+ 服務器通用連接配置參數
+
+ 此文件為Trojan-go官方程序所使用的客戶端配置文件,配置為全局模式,http與socks5地址:127.0.0.1:1080
+ Trojan-go官方網站:https://github.com/p4gefau1t/trojan-go
+ Trojan-go官方程序下載地址:https://github.com/p4gefau1t/trojan-go/releases
+ 下載相應版本,Windows選擇Trojan-go-x.xx-win.zip,解壓後提取trojan-go.exe。與config.json放在同一目錄,運行trojan-go.exe即可。
+ 此文件為Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)掃碼導入節點(Trojan-Go的WebSocket模式暫不支持)
+ Trojan-QT5 (windows)下載網址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter(Android)下載網址:https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios)下載,需要使用國外區的AppleID。請自行谷歌方法。
+ 此文件為Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)複製粘貼導入節點的網址(Trojan-Go的WebSocket模式暫不支持)
+ 服務器通用連接配置參數
+
+ 此文件為Trojan官方程序所使用的客戶端配置文件,配置為全局模式,http與socks5地址:127.0.0.1:1080
+ Trojan官方網站:https://trojan-gfw.github.io/trojan/
+ Trojan官方程序下載地址:https://github.com/trojan-gfw/trojan/releases
+ 下載相應版本,Windows選擇Trojan-x.xx-win.zip,解壓後提取trojan.exe。與config.json放在同一目錄,運行trojan.exe即可。
+ 此文件為Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)掃碼導入節點
+ Trojan-QT5 (windows)下載網址:https://github.com/TheWanderingCoel/Trojan-Qt5/releases
+ igniter(Android)下載網址:https://github.com/trojan-gfw/igniter/releases
+ Shadowrocket(ios)下載,需要使用國外區的AppleID。請自行谷歌方法。
+ 此文件為Trojan-QT5 (windows)、igniter(Android)、Shadowrocket(ios)複製粘貼導入節點的網址
+ 服務器通用連接配置參數
+
+ 此文件為NaiveProxy官方程序所使用的客戶端配置文件,配置為全局模式,socks5地址:127.0.0.1:1080
+ NaiveProxy官方網站:https://github.com/klzgrad/naiveproxy
+ NaiveProxy官方程序下載地址:https://github.com/klzgrad/naiveproxy/releases
+ 下載相應版本,Windows選擇naiveproxy-x.xx-win.zip,解壓後提取naive.exe。與config.json放在同一目錄,運行naive.exe即可。
+ 此文件為NaiveGUI(windows)複製粘貼導入節點的網址
+ NaiveGUI(windows)下載網址:https://github.com/ExcitedCodes/NaiveGUI/releases
+ 服務器通用連接配置參數
+
+
\ No newline at end of file
diff --git a/ProxySU/TrojanGoTemplateWindow.xaml.cs b/ProxySU/TrojanGoTemplateWindow.xaml.cs
index 12c9cc3..f279d5a 100644
--- a/ProxySU/TrojanGoTemplateWindow.xaml.cs
+++ b/ProxySU/TrojanGoTemplateWindow.xaml.cs
@@ -27,7 +27,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递域名
diff --git a/ProxySU/V2RayTemplateWindow.xaml.cs b/ProxySU/V2RayTemplateWindow.xaml.cs
index 6138590..fd470f1 100644
--- a/ProxySU/V2RayTemplateWindow.xaml.cs
+++ b/ProxySU/V2RayTemplateWindow.xaml.cs
@@ -68,7 +68,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -93,7 +94,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -131,7 +133,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -148,7 +151,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -191,7 +195,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
@@ -207,7 +212,8 @@ namespace ProxySU
{
if (string.IsNullOrEmpty(TextBoxDomain.Text.ToString()) == true)
{
- MessageBox.Show("域名不能为空!");
+ //****** "域名不能为空,请检查相关参数设置!" ******
+ MessageBox.Show(Application.Current.FindResource("MessageBoxShow_DomainNotEmpty").ToString());
return;
}
//传递模板类型
diff --git a/ProxySU/bin/Beta/Beta.zip b/ProxySU/bin/Beta/Beta.zip
index 4c66ad2..2ead2af 100644
Binary files a/ProxySU/bin/Beta/Beta.zip and b/ProxySU/bin/Beta/Beta.zip differ