我编写了一个自定义Windows Credentials Provider来捕获用户登录信息。此提供程序的主要用途之一是存储用户的密码,并在登录时在Windows上运行的C#服务中使用它。
这让我想到了存储凭据信息的位置和方式的问题。在登录时(即用户提供有效的登录信息并选择登录),服务应该能够获取信息并使用它。
将凭证信息传达给服务的正确方法是什么?
使用凭据登录用户的部分或多或少根据提供的用于凭据提供程序的Microsoft示例,其中 GetSerialization 如下所示:
hr = ProtectIfNecessaryAndCopyPassword(_rgFieldStrings[SFI_PASSWORD], _cpus, &pwzProtectedPassword);
g_pwzProtectedPassword = pwzProtectedPassword;
if (SUCCEEDED(hr))
{
PWSTR pszDomain;
PWSTR pszUsername;
hr = SplitDomainAndUsername(_pszQualifiedUserName, &pszDomain, &pszUsername);
if (SUCCEEDED(hr))
{
KERB_INTERACTIVE_UNLOCK_LOGON kiul;
hr = KerbInteractiveUnlockLogonInit(pszDomain, pszUsername, pwzProtectedPassword, _cpus, &kiul);
if (SUCCEEDED(hr))
{
// We use KERB_INTERACTIVE_UNLOCK_LOGON in both unlock and logon scenarios. It contains a
// KERB_INTERACTIVE_LOGON to hold the creds plus a LUID that is filled in for us by Winlogon
// as necessary.
hr = KerbInteractiveUnlockLogonPack(kiul, &pcpcs->rgbSerialization, &pcpcs->cbSerialization);
if (SUCCEEDED(hr))
{
ULONG ulAuthPackage;
hr = RetrieveNegotiateAuthPackage(&ulAuthPackage);
if (SUCCEEDED(hr))
{
pcpcs->ulAuthenticationPackage = ulAuthPackage;
pcpcs->clsidCredentialProvider = CLSID_CredentialProvider;
// At this point the credential has created the serialized credential used for logon
// By setting this to CPGSR_RETURN_CREDENTIAL_FINISHED we are letting logonUI know
// that we have all the information we need and it should attempt to submit the
// serialized credential.
*pcpgsr = CPGSR_RETURN_CREDENTIAL_FINISHED;
}
}
}
CoTaskMemFree(pszDomain);
CoTaskMemFree(pszUsername);
}
CoTaskMemFree(pwzProtectedPassword);
}
编辑:
我尝试使用Windows Credential Manager API来保存密码,但这似乎没有任何效果。当我尝试获取登录时的用户名/密码时,我得不到任何回报。
DWORD cbCreds = (DWORD)(1 + strlen(password));
CREDENTIALW cred = { 0 };
cred.Type = CRED_TYPE_GENERIC;
cred.TargetName = TargetName;
cred.CredentialBlobSize = cbCreds;
cred.CredentialBlob = (LPBYTE)password;
cred.Persist = CRED_PERSIST_LOCAL_MACHINE;
cred.UserName = *username;
return ::CredWriteW(&cred, 0) ? true : false;
答案 0 :(得分:0)
认为管道是与服务通信的正确方式。 使用Windows凭据管理器保存/加载密码没有任何效果,因为在尚未登录的情况下,不同的登录会话和用户的SID已禁用。