gpt4 book ai didi

c# - 在另一台机器上模拟本地用户

转载 作者:太空宇宙 更新时间:2023-11-03 19:47:26 24 4
gpt4 key购买 nike

我需要将我的 Controller 登录到另一台机器上并在上面复制一个文件;我必须在远程计算机上使用本地用户。

目前我正在使用这段代码:

    private Impersonate(bool active, string domain, string username, string password, LogonType logonType)
{
if (active)
{
IntPtr handle;
var ok = NativeMethods.LogonUser(username, domain, password, (int)logonType, 0, out handle);
if (!ok)
{
var errorCode = Marshal.GetLastWin32Error();
throw new ApplicationException(string.Format("Could not impersonate the elevated user. LogonUser returned error code {0}.", errorCode));
}

_handle = new SafeTokenHandle(handle);
_context = WindowsIdentity.Impersonate(_handle.DangerousGetHandle());
}
}

传递这些参数:

    using (Impersonate.LogonUser(true,
".",
"todev1.domain.com\admin",
"Test123_",
LogonType.Interactive))
{

}

和这个胜利 API:

[DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
internal static extern bool LogonUser(String lpszUsername, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, out IntPtr phToken);

我检查了这个 Q/A Using advapi32.dll:LogonUserA() to impersonate a remote machine's local user但提供的解决方案不起作用。

我试图将多个值作为域、用户等传递给该方法,但我找不到正确的解决方案。我尝试使用 NewCredentials,但即使未登录,它也总是返回正常。

最佳答案

我终于解决了这个问题,无需将用户添加到每台将模拟远程机器的机器。

使用NewCredential是正确的,但是使用的是WINNT50 LogonProvider。

所以我现在的模拟方法是这样的:

 private Impersonate(bool active, string domain, string username, string password, LogonType logonType, LogonProvider logonProvider)
{
if (active)
{
IntPtr handle;
var ok = NativeMethods.LogonUser(username, domain, password, (int)logonType, (int)logonProvider, out handle);
if (!ok)
{
var errorCode = Marshal.GetLastWin32Error();
throw new ApplicationException(string.Format("Could not impersonate the elevated user. LogonUser returned error code {0}.", errorCode));
}

_handle = new SafeTokenHandle(handle);
_context = WindowsIdentity.Impersonate(_handle.DangerousGetHandle());
}
}

然后我使用代码调用 Impersonate 方法:

using (Impersonate.LogonUser(true,
"todev1.domain.com",
"admin",
"Test123_",
LogonType.NewCredentials,
LogonProvider.WinNT50))
{

}

关于c# - 在另一台机器上模拟本地用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43722118/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com