无法将字符串转换为SecureString(拨号VPN)

问题描述 投票:0回答:1

所以我得到了一个代码,使用PowerShell和radial创建和连接Windows 10中的VPN。

一切正常。

但是,当我想用​​用户输入凭据拨打VPN时,我收到了一个错误。

这是我的代码:

Console.WriteLine("VPN Created.");
Console.WriteLine("Do you wanna connect? y/n");
string key = Console.ReadLine();

if (key == "y") {
    Console.WriteLine("Input username:");
    string username = Console.ReadLine();

    Console.WriteLine("Input password:");
    string password = Console.ReadLine();

    Console.WriteLine("Executing rasdial...");
    System.Diagnostics.Process.Start("rasdial.exe", "VPN_Arta {0} {1}", username, password);
}

我得到的错误是:

无法在启动rasdial.exe的情况下将字符串转换为System.Security.SecureString。

你们有任何想法如何解决这个问题吗?

c# powershell vpn securestring
1个回答
0
投票

所以我用正常的字符串工作,但现在我需要在securestring中使用屏蔽密码。

我的代码看起来像这样:

Console.WriteLine("Input username:");
            string username = Console.ReadLine();

            Console.WriteLine("Input password:");

            SecureString password = new SecureString();
            password = Classes.Functions.GetPassword();

            Classes.Functions.runProcRasdial("VPN_Arta", username, password);

            Console.Clear();
            Console.WriteLine("VPN Connected.");

调用rasdial的方法:

public static Process runProcRasdial(string VPNName, string username, SecureString password)
    {

        ProcessStartInfo psi = new ProcessStartInfo("cmd")
        {
            RedirectStandardInput = true,
            RedirectStandardOutput = false,
            UseShellExecute = false
        };
        var proc = new Process()
        {
            StartInfo = psi,
            EnableRaisingEvents = true,
        };
        proc.Start();
        proc.StandardInput.WriteLine("rasdial {0} {1} {2}", VPNName, username, password);
        proc.StandardInput.WriteLine("exit");
        proc.WaitForExit();
        return proc;

    }

屏蔽密码的方法:

//mask password
    public static SecureString GetPassword()
    {
        var pwd = new SecureString();
        while (true)
        {
            ConsoleKeyInfo i = Console.ReadKey(true);
            if (i.Key == ConsoleKey.Enter)
            {
                break;
            }
            else if (i.Key == ConsoleKey.Backspace)
            {
                if (pwd.Length > 0)
                {
                    pwd.RemoveAt(pwd.Length - 1);
                    Console.Write("\b \b");
                }
            }
            else if (i.KeyChar != '\u0000' ) // KeyChar == '\u0000' if the key pressed does not correspond to a printable character, e.g. F1, Pause-Break, etc
            {
                pwd.AppendChar(i.KeyChar);
                Console.Write("*");
            }
            }
        return pwd;
    }

问题是我没有得到任何错误一切看起来都很好。但我认为屏蔽密码功能会有问题,因为它不接受正确的密码,我也不知道。

你们有什么想法吗?

谢谢,

约翰

© www.soinside.com 2019 - 2024. All rights reserved.