5

我有一个需要能够打开和关闭远程服务的 .NET MVC3 应用程序。为了做到这一点,我通过 WindowsIdentity.Impersonate() 模拟了一个特定的用户帐户。要测试用户的权限,我可以以用户身份登录并sc.exe \\[server] start [service]从命令提示符处执行。我也知道 impersonate 命令按预期工作,因为应用程序匿名运行,因此无法在.没有模拟的情况下控制本地计算机 ( ) 上的服务,但可以通过模拟控制本地服务。但是,当我将它放在一起并尝试启动远程服务而不是本地服务时,我总是收到错误“无法[service]在计算机上打开服务' [server]'”

有没有人遇到过类似的问题?在我意识到 sc.exe 可以正常工作之前,我一直以为它是服务器配置而不是 .NET 问题。这是我正在使用的类的缩写版本:

public class Service
{
    public string Name;
    public bool Running;
    private ServiceController serviceController;

    public Service(string name, string host)
    {
        Name = name;

        serviceController = new ServiceController(Name, host);
        Running = serviceController.Status == ServiceControllerStatus.Running;
    }

    public bool StartService()
    {
        ServiceControllerPermission scp = new ServiceControllerPermission(ServiceControllerPermissionAccess.Control, serviceController.MachineName, Name);
        scp.Assert();

        serviceController.Start();
        serviceController.WaitForStatus(ServiceControllerStatus.Running, new TimeSpan(0, 0, 5));
        serviceController.Refresh();

        Running = serviceController.Status == ServiceControllerStatus.Running;

        return Running;
    }
}

另一个注意事项:如果我将应用程序而不是服务器指向域中的另一台 Windows 7 PC 并将模拟凭据更改为该 PC 所有者的凭据,我实际上可以毫无问题地远程控制他们的服务。

根据请求,我在此处添加模拟代码。它有点长,所以请耐心等待:

public class Impersonate
{
    public const int LOGON32_LOGON_INTERACTIVE = 2;
    public const int LOGON32_PROVIDER_DEFAULT = 0;

    WindowsImpersonationContext impersonationContext;

    [DllImport("advapi32.dll")]
    public static extern int LogonUserA(String lpszUserName,
        String lpszDomain,
        String lpszPassword,
        int dwLogonType,
        int dwLogonProvider,
        ref IntPtr phToken);
    [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    public static extern int DuplicateToken(IntPtr hToken,
        int impersonationLevel,
        ref IntPtr hNewToken);

    [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    public static extern bool RevertToSelf();

    [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
    public static extern bool CloseHandle(IntPtr handle);

    public bool impersonateValidUser(String userName, String domain, String password)
    {
        WindowsIdentity tempWindowsIdentity;
        IntPtr token = IntPtr.Zero;
        IntPtr tokenDuplicate = IntPtr.Zero;

        if (RevertToSelf())
        {
            if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE,
                LOGON32_PROVIDER_DEFAULT, ref token) != 0)
            {
                if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
                {
                    tempWindowsIdentity = new WindowsIdentity(tokenDuplicate);
                    impersonationContext = tempWindowsIdentity.Impersonate();
                    if (impersonationContext != null)
                    {
                        CloseHandle(token);
                        CloseHandle(tokenDuplicate);
                        return true;
                    }
                }
            }
        }
        if (token != IntPtr.Zero)
            CloseHandle(token);
        if (tokenDuplicate != IntPtr.Zero)
            CloseHandle(tokenDuplicate);
        return false;
    }

    public void undoImpersonation()
    {
        impersonationContext.Undo();
    }
}

我在尝试启动或停止服务之前调用此代码:

Service s = new Service(ServiceName, MachineName);

if (Impersonation.impersonateValidUser(Username, Domain, Password))
{
    if (s.Running)
        s.StopService();
    else
        s.StartService();

    Impersonation.undoImpersonation();
}

可能值得注意的是,我可以列出服务并获得单个服务的状态(就像我在这里所做的那样) - 只有当我开始或停止服务时才会遇到麻烦。

4

2 回答 2

3

也许我找到了答案:

在模拟方法LogonUserA

使用LOGON32_LOGON_SERVICE (= 5) 而不是LOGON32_LOGON_INTERACTIVE

确保您模拟的用户与运行服务的用户相同。

就我而言,用户包含在本地策略中-> 将会话作为服务启动。我没有对不包含在该本地策略中的用户进行测试。

希望能帮助到你!

于 2013-09-19T15:51:59.113 回答
1

好吧,如果您要模拟的用户是机器管理员,那是正确的。如果不是,那么您必须授予用户启动服务的特定权限。

由于我不是网络管理员,所以我不知道如何制作它,但我找到了这个链接,它解释了如何使用 subinacl 工具进行操作:

去下载

最后,命令行将是:

  • subinacl /service SERVICENAME /grant=DOMAINNAME\USERNAME Users=TO

Users=TO 授予用户启动/停止权限

在这种情况下,您必须使用INTERACTIVE模式而不是SERVICE模式来模拟用户

于 2013-10-01T09:03:00.593 回答