ユーザーが資格情報を入力するアプリケーションを使用して WindowsIdentity オブジェクトを作成し、その後、入力した資格情報に対応するユーザーになりすまして CredWrite 呼び出しを行います。しかし、それは戻ってきています
ERROR_NO_SUCH_LOGON_SESSION 1312 (0x520) 指定されたログオン セッションが存在しません。すでに終了している可能性があります。
偽装コードを取り出すと、すべてが期待どおりに機能します。ただし、自分自身 (現在ログインしているユーザー) になりすましても、同じ 1312 エラーが返されます。
私は自分が間違っていることに困惑しています。任意のポインタをいただければ幸いです。
IntPtr token = new IntPtr(0);
securityUtils = new Security.Utility();
string user = "someuser";
string pass = "somepassword";
token = securityUtils.GetToken(user, "somedomain", pass.ConvertToSecureString());
var newId = new WindowsIdentity(token);
string currentUser1 = WindowsIdentity.GetCurrent().Name;
Impersonation.Impersonate(newId);
string currentUser2 = WindowsIdentity.GetCurrent().Name;
int result = WriteCredential("dummykey", user.ConvertToSecureString(), pass.ConvertToSecureString());
Impersonation.UnImpersonate();
string currentUser3 = WindowsIdentity.GetCurrent().Name;
GetToken メソッドは、LogonUser 呼び出しを行います。currentUser1/2/3 を調べて、なりすましが機能していることを確認しました。
WriteCredential メソッドは次のようになります。
public static int WriteCredential(string key, SecureString userName, SecureString password)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentNullException("key is null or empty");
}
if (userName == null || userName.Length == 0)
{
throw new ArgumentNullException("userName is null or empty");
}
if (password == null || password.Length == 0)
{
throw new ArgumentNullException("password is null or empty");
}
string passwordAsString = password.ConvertToUnsecureString();
byte[] byteArray = Encoding.Unicode.GetBytes(passwordAsString);
if (byteArray.Length > MaximumCredentialBlobSize)
{
throw new ArgumentOutOfRangeException(string.Format("The password message has exceeded {0} bytes.", MaximumCredentialBlobSize));
}
Credential cred = new Credential();
cred.TargetName = System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(key);
cred.CredentialBlob = System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(passwordAsString);
cred.CredentialBlobSize = (uint)Encoding.Unicode.GetBytes(passwordAsString).Length;
cred.AttributeCount = 0;
cred.Attributes = IntPtr.Zero;
cred.Comment = IntPtr.Zero;
cred.TargetAlias = System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(key);
cred.Type = CredentialType.CRED_TYPE_GENERIC;
cred.Persist = Persistance.CRED_PERSIST_ENTERPRISE;
cred.UserName = System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(userName.ConvertToUnsecureString());
bool written = CredWrite(ref cred, 0);
int lastError = Marshal.GetLastWin32Error();
if (!written)
{
return lastError;
}
return 0;
}
Credential 構造体:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
private struct Credential
{
public uint Flags;
public CredentialType Type;
public IntPtr TargetName;
public IntPtr Comment;
public System.Runtime.InteropServices.ComTypes.FILETIME LastWritten;
public uint CredentialBlobSize;
public IntPtr CredentialBlob;
public Persistance Persist;
public uint AttributeCount;
public IntPtr Attributes;
public IntPtr TargetAlias;
public IntPtr UserName;
}
DllImport:
[DllImport("Advapi32.dll", EntryPoint = "CredWriteW", CharSet = CharSet.Unicode, SetLastError = true)]
private static extern bool CredWrite([In] ref Credential userCredential, [In] uint flags);