1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-03 22:03:39 +03:00

添加启用root密码登录

This commit is contained in:
ProxySU 2020-10-24 02:00:07 +08:00
parent ebfdcf0fec
commit a1a47c98b1
8 changed files with 235 additions and 52 deletions

View file

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ProxySU"
mc:Ignorable="d"
Title="ProxySU - v2.4.9" Height="675" Width="650">
Title="ProxySU - v2.4.10" Height="675" Width="650">
<!--以下样式参考自https://yq.aliyun.com/articles/331878
https://docs.microsoft.com/en-us/dotnet/desktop-wpf/fundamentals/styles-templates-overview-->
<Window.Resources>
@ -664,7 +664,8 @@
<Button x:Name="ButtonClearOccupiedPorts" Content="{DynamicResource ButtonClearOccupiedPorts}" Grid.Column="1" Grid.Row="0" Margin="5" Click="ButtonClearOccupiedPorts_Click"></Button>
<Button x:Name="ButtonTestAndEnableBBR" Content="{DynamicResource ButtonTestAndEnableBBR}" Grid.Column="2" Grid.Row="0" Margin="5" Click="ButtonTestAndEnableBBR_Click"></Button>
<Button x:Name="ButtonRemoveAllSoft" Content="{DynamicResource ButtonRemoveAllSoft}" Grid.Column="3" Grid.Row="0" Margin="5" Click="ButtonRemoveAllSoft_Click"></Button>
<Button Content="test" Grid.Column="0" Grid.Row="1" Margin="10" Click="Button_Click" Visibility="Collapsed"></Button>
<Button x:Name="ButtonEnableRootPassWord" Content="{DynamicResource ButtonEnableRootPassWord}" Grid.Column="0" Grid.Row="1" Margin="5" Click="ButtonEnableRootPassWord_Click"></Button>
<Button Content="test" Grid.Column="3" Grid.Row="2" Margin="10" Click="Button_Click" Visibility="Collapsed"></Button>
</Grid>
</TabItem>

View file

@ -157,7 +157,8 @@ namespace ProxySU
string lastVersionNoV = lastVersion.Replace("v", String.Empty);
Version version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
string cerversion = version.ToString().Substring(0, 5); //获取本地版本信息
//MessageBox.Show(version.ToString());
string cerversion = version.ToString().Substring(0, 6); //获取本地版本信息
//MessageBox.Show(cerversion);
string[] lastVerComp = lastVersionNoV.Split('.');
string[] localVerComp = cerversion.Split('.');
@ -8067,7 +8068,10 @@ namespace ProxySU
//安装证书到代理程序 58--60
private bool CertInstallProxy(SshClient client)
{
return true;
}
//Caddy安装与检测安装是否成功 61--66
@ -8128,6 +8132,15 @@ namespace ProxySU
sshShellCommand = @"yum -y -q install caddy";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = @"sed -i 's/AmbientCapabilities/#AmbientCapabilities/g' /usr/lib/systemd/system/caddy.service";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = @"sed -i 's/=caddy/=root/g' /usr/lib/systemd/system/caddy.service";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = @"systemctl daemon-reload";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
}
sshShellCommand = @"find / -name caddy";
@ -8158,7 +8171,10 @@ namespace ProxySU
//上传Caddy配置文件67--70
private bool UpConfigCaddy(SshClient client)
{
return true;
}
//程序启动检测
//soft--要检测的程序
@ -8322,12 +8338,199 @@ namespace ProxySU
}
//生成客户端配置 96--98
#endregion
#region Root密码登录
private void ButtonEnableRootPassWord_Click(object sender, RoutedEventArgs e)
{
//******"本功能需要当前登录的账户具有sudo权限是否为远程主机启用root账户并设置密码"******
string messageShow = Application.Current.FindResource("MessageBoxShow_EnableRootPassword").ToString();
MessageBoxResult messageBoxResult = MessageBox.Show(messageShow, "", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (messageBoxResult == MessageBoxResult.Yes)
{
ConnectionInfo connectionInfo = GenerateConnectionInfo();
if (connectionInfo == null)
{
//****** "远程主机连接信息有误,请检查!" ******
MessageBox.Show(Application.Current.FindResource("MessageBoxShow_ErrorHostConnection").ToString());
return;
}
ReceiveConfigurationParameters[4] = TextBoxHost.Text;//传递主机地址
installationDegree = 0;
TextBoxMonitorCommandResults.Text = "";
Thread thread = new Thread(() => EnableRootPassWord(connectionInfo));
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
}
}
//启用Root密码登录进程
private void EnableRootPassWord(ConnectionInfo connectionInfo)
{
functionResult = true;
getApt = false;
getDnf = false;
getYum = false;
onlyIpv6 = false;
//******"正在登录远程主机......"******
SetUpProgressBarProcessing(1);
string currentStatus = Application.Current.FindResource("DisplayInstallInfo_Login").ToString();
MainWindowsShowInfo(currentStatus);
try
{
#region
//byte[] expectedFingerPrint = new byte[] {
// 0x66, 0x31, 0xaf, 0x00, 0x54, 0xb9, 0x87, 0x31,
// 0xff, 0x58, 0x1c, 0x31, 0xb1, 0xa2, 0x4c, 0x6b
// };
#endregion
using (var client = new SshClient(connectionInfo))
{
#region ssh登录验证主机指纹代码块
// client.HostKeyReceived += (sender, e) =>
// {
// if (expectedFingerPrint.Length == e.FingerPrint.Length)
// {
// for (var i = 0; i < expectedFingerPrint.Length; i++)
// {
// if (expectedFingerPrint[i] != e.FingerPrint[i])
// {
// e.CanTrust = false;
// break;
// }
// }
// }
// else
// {
// e.CanTrust = false;
// }
// };
#endregion
client.Connect();
if (client.IsConnected == true)
{
//******"主机登录成功"******
SetUpProgressBarProcessing(5);
currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginSuccessful").ToString();
MainWindowsShowInfo(currentStatus);
}
//检测root权限 5--7
//******"检测是否运行在root权限下..."******01
SetUpProgressBarProcessing(5);
currentStatus = Application.Current.FindResource("DisplayInstallInfo_DetectionRootPermission").ToString();
MainWindowsShowInfo(currentStatus);
sshShellCommand = @"id -u";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
if (currentShellCommandResult.TrimEnd('\r','\n').Equals("0") == true)
{
//******"当前账户已经具有root权限无需再设置"******
currentStatus = Application.Current.FindResource("MessageBoxShow_AlreadyRoot").ToString();
MainWindowsShowInfo(currentStatus);
MessageBox.Show(currentStatus);
client.Disconnect();
return;
}
SetUpProgressBarProcessing(10);
string hostPassword = "'" + PasswordBoxHostPassword.Password + "'";
//MessageBox.Show(hostPassword);
sshShellCommand = $"echo {hostPassword} | sudo -S id -u";
//MessageBox.Show(sshShellCommand);
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
if (currentShellCommandResult.TrimEnd('\r', '\n').Equals("0") == false)
{
//******"当前账户无法获取sudo权限设置失败"******
currentStatus = Application.Current.FindResource("MessageBoxShow_NoSudoToAccount").ToString();
MainWindowsShowInfo(currentStatus);
MessageBox.Show(currentStatus);
client.Disconnect();
return;
}
SetUpProgressBarProcessing(20);
string cmdPre = $"echo {hostPassword} | sudo -S id -u" + ';';
sshShellCommand = cmdPre + @"sudo sed -i 's/PermitRootLogin /#PermitRootLogin /g' /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = cmdPre + @"sudo sed -i 's/PasswordAuthentication /#PasswordAuthentication /g' /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
SetUpProgressBarProcessing(30);
sshShellCommand = cmdPre + @"sudo sed -i 's/PermitEmptyPasswords /#PermitEmptyPasswords /g' /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = cmdPre + @"echo 'PermitRootLogin yes' | sudo tee -a /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
SetUpProgressBarProcessing(40);
sshShellCommand = cmdPre + @"echo 'PasswordAuthentication yes' | sudo tee -a /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
sshShellCommand = cmdPre + @"echo 'PermitEmptyPasswords no' | sudo tee -a /etc/ssh/sshd_config";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
SetUpProgressBarProcessing(60);
sshShellCommand = cmdPre + @"sudo systemctl restart sshd";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
//******"生成20位随机密码"******
currentStatus = Application.Current.FindResource("DisplayInstallInfo_GenerateRandomPassword").ToString();
MainWindowsShowInfo(currentStatus);
sshShellCommand = @"cat /dev/urandom | tr -dc '_A-Z#\-+=a-z(0-9%^>)]{<|' | head -c 20 ; echo ''";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
SetUpProgressBarProcessing(80);
string setPassword = currentShellCommandResult.TrimEnd('\r', '\n') + '\n';
sshShellCommand = cmdPre + $"echo -e \"{setPassword}{setPassword}\" | sudo passwd root";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
client.Disconnect();
string filePath = ReceiveConfigurationParameters[4].Replace(':', '_');
CheckDir(filePath);
using (StreamWriter sw = new StreamWriter($"{filePath}\\host_password_info.txt"))
{
sw.WriteLine(ReceiveConfigurationParameters[4]);
sw.WriteLine("root");
sw.WriteLine(setPassword);
}
SetUpProgressBarProcessing(100);
//***远程主机Root账户密码登录已启用密码保存在随后打开的文件夹中***
currentStatus = Application.Current.FindResource("DisplayInstallInfo_EnableRootPasswordSuccess").ToString();
MainWindowsShowInfo(currentStatus);
MessageBox.Show(currentStatus);
System.Diagnostics.Process.Start("explorer.exe", filePath);
return;
}
}
catch (Exception ex1)//例外处理
#region
{
ProcessException(ex1.Message);
//****** "主机登录失败!" ******
currentStatus = Application.Current.FindResource("DisplayInstallInfo_LoginFailed").ToString();
MainWindowsShowInfo(currentStatus);
}
#endregion
}
#endregion
}
}

View file

@ -8,7 +8,7 @@ using System.Windows;
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ProxySU")]
[assembly: AssemblyDescription("V2rayTrojanNaiveProxyTrojan-Go一键安装工具")]
[assembly: AssemblyDescription("V2rayTrojanNaiveProxyTrojan-Go一键安装工具")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("ProxySU")]
[assembly: AssemblyProduct("ProxySU")]
@ -51,5 +51,5 @@ using System.Windows;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.9.0")]
[assembly: AssemblyFileVersion("2.4.9.0")]
[assembly: AssemblyVersion("2.4.10.0")]
[assembly: AssemblyFileVersion("2.4.10.0")]

View file

@ -2813,48 +2813,7 @@ namespace ProxySU
string openFolderPath = configDomainSavePath;
System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
this.Close();
//if (String.Equals(MainWindow.proxyType, "V2Ray"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "TrojanGo"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "Trojan"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "NaiveProxy"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "SSR"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "SS"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
//else if (String.Equals(MainWindow.proxyType, "MTProto"))
//{
// string openFolderPath = configDomainSavePath;
// System.Diagnostics.Process.Start("explorer.exe", openFolderPath);
// this.Close();
//}
}
//SSR生成URL链接

View file

@ -99,8 +99,15 @@
<sys:String x:Key="ButtonTestAndEnableBBR">Enable BBR</sys:String>
<sys:String x:Key="ButtonRemoveAllSoft">Uninstall Proxy</sys:String>
<sys:String x:Key="MessageBoxShow_RemoveAllSoft">Only the proxy software installed by ProxySU and related configurations are supported. Please make sure that important configurations have been backed up. Uninstalling agents installed using other methods or scripts is not supported. Are you sure you want to uninstall the agent software on the remote host?</sys:String>
<sys:String x:Key="MessageBoxShow_EnableRootPassword">This function requires that the currently logged-in account has sudo permissions. Is the root account enabled and password set for the remote host?</sys:String>
<sys:String x:Key="MessageBoxShow_AlreadyRoot">The current account already has root privileges, no need to set it up!</sys:String>
<sys:String x:Key="MessageBoxShow_NoSudoToAccount">The current account cannot obtain sudo permission, the setting failed!</sys:String>
<sys:String x:Key="DisplayInstallInfo_GenerateRandomPassword">Generate a 20-digit random password!</sys:String>
<sys:String x:Key="DisplayInstallInfo_EnableRootPasswordSuccess">The remote host Root account password login is enabled, and the password is saved in the folder opened afterwards!</sys:String>
<sys:String x:Key="DisplayInstallInfo_StartRemoveProxy">Start uninstall......</sys:String>
<sys:String x:Key="DisplayInstallInfo_DiscoverProxySoft">Detected installed</sys:String>
<sys:String x:Key="DisplayInstallInfo_RemoveProxySoftFailed">Uninstallation failed! Please ask the developer!</sys:String>
<sys:String x:Key="DisplayInstallInfo_RemoveProxySoftSuccess">Uninstall successfully!</sys:String>
<!-- The following resource tool tab interface -->
<sys:String x:Key="ButtonWebBrowserHomePage">Home</sys:String>
<sys:String x:Key="ButtonWebBrowserForward">Forward</sys:String>

View file

@ -100,7 +100,13 @@
<sys:String x:Key="ButtonClearOccupiedPorts">释放80/443端口</sys:String>
<sys:String x:Key="ButtonTestAndEnableBBR">启用BBR</sys:String>
<sys:String x:Key="ButtonRemoveAllSoft">卸载代理</sys:String>
<sys:String x:Key="ButtonEnableRootPassWord">启用Root密码登录</sys:String>
<sys:String x:Key="MessageBoxShow_RemoveAllSoft">仅支持卸载由ProxySU安装的代理软件及相关配置请确保重要配置已备份。不支持卸载使用其他方法或脚本安装的代理。确定要卸载远程主机上的代理软件吗</sys:String>
<sys:String x:Key="MessageBoxShow_EnableRootPassword">本功能需要当前登录的账户具有sudo权限是否为远程主机启用root账户并设置密码</sys:String>
<sys:String x:Key="MessageBoxShow_AlreadyRoot">当前账户已经具有root权限无需再设置</sys:String>
<sys:String x:Key="MessageBoxShow_NoSudoToAccount">当前账户无法获取sudo权限设置失败</sys:String>
<sys:String x:Key="DisplayInstallInfo_GenerateRandomPassword">生成20位随机密码</sys:String>
<sys:String x:Key="DisplayInstallInfo_EnableRootPasswordSuccess">远程主机Root账户密码登录已启用密码保存在随后打开的文件夹中</sys:String>
<sys:String x:Key="DisplayInstallInfo_StartRemoveProxy">开始卸载</sys:String>
<sys:String x:Key="DisplayInstallInfo_DiscoverProxySoft">检测到已安装</sys:String>
<sys:String x:Key="DisplayInstallInfo_RemoveProxySoftFailed">卸载失败!请向开发者问询!</sys:String>

View file

@ -101,8 +101,15 @@
<sys:String x:Key="ButtonTestAndEnableBBR">啟用BBR</sys:String>
<sys:String x:Key="ButtonRemoveAllSoft">卸載代理</sys:String>
<sys:String x:Key="MessageBoxShow_RemoveAllSoft">僅支持卸載由ProxySU安裝的代理軟件及相關配置請確保重要配置已備份。不支持卸載使用其他方法或腳本安裝的代理。確定要卸載遠程主機上的代理軟件嗎</sys:String>
<sys:String x:Key="MessageBoxShow_EnableRootPassword">本功能需要當前登錄的賬戶具有sudo權限是否為遠程主機啟用root賬戶並設置密碼</sys:String>
<sys:String x:Key="MessageBoxShow_AlreadyRoot">當前賬戶已經具有root權限無需再設置</sys:String>
<sys:String x:Key="MessageBoxShow_NoSudoToAccount">當前賬戶無法獲取sudo權限設置失敗</sys:String>
<sys:String x:Key="DisplayInstallInfo_GenerateRandomPassword">生成20位隨機密碼</sys:String>
<sys:String x:Key="DisplayInstallInfo_EnableRootPasswordSuccess">遠程主機Root賬戶密碼登錄已啟用密碼保存在隨後打開的文件夾中</sys:String>
<sys:String x:Key="DisplayInstallInfo_StartRemoveProxy">開始卸載......</sys:String>
<sys:String x:Key="DisplayInstallInfo_DiscoverProxySoft">檢測到已安裝</sys:String>
<sys:String x:Key="DisplayInstallInfo_RemoveProxySoftFailed">卸載失敗!請向開發者問詢!</sys:String>
<sys:String x:Key="DisplayInstallInfo_RemoveProxySoftSuccess">卸載成功!</sys:String>
<!-- 以下資源工具標籤頁界面 -->
<sys:String x:Key="ButtonWebBrowserHomePage">主頁</sys:String>
<sys:String x:Key="ButtonWebBrowserForward">前進</sys:String>

Binary file not shown.