This class will let you impersonate.a Domain User, and simply passes through. I used it to modify Registry Settings as a different user.
Implementation:
using Imp;
using (new Impersonator(txtUsername.Text,
txtDomain.Text,
txtPassword.Text))
{
// function or Code here
}
Class:
namespace Impers
{
#region Using directives.
using System;
using System.Security.Principal;
using System.Runtime.InteropServices;
using System.ComponentModel;
#endregion
public class Impersonator :
IDisposable
{
#region Public methods.
public Impersonator(
string userName,
string domainName,
string password)
{
ImpersonateValidUser(userName,
domainName, password);
}
#endregion
#region IDisposable member.
public void Dispose()
{
UndoImpersonation();
}
#endregion
#region P/Invoke.
[DllImport("advapi32.dll",
SetLastError = true)]
private static extern int LogonUser(
string lpszUserName,
string lpszDomain,
string lpszPassword,
int dwLogonType,
int dwLogonProvider,
ref IntPtr phToken);
[DllImport("advapi32.dll", CharSet =
CharSet.Auto, SetLastError = true)]
private static extern int DuplicateToken(
IntPtr hToken,
int impersonationLevel,
ref IntPtr hNewToken);
[DllImport("advapi32.dll", CharSet = CharSet.Auto,
SetLastError = true)]
private static extern bool RevertToSelf();
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private static extern bool CloseHandle(
IntPtr handle);
private const int LOGON32_LOGON_INTERACTIVE = 2;
private const int LOGON32_PROVIDER_DEFAULT = 0;
#endregion
#region Private member.
private void ImpersonateValidUser(
string userName,
string domain,
string password)
{
WindowsIdentity tempWindowsIdentity = null;
IntPtr token = IntPtr.Zero;
IntPtr tokenDuplicate = IntPtr.Zero;
try
{
if (RevertToSelf())
{
if (LogonUser(
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();
}
else
{
throw new Win32Exception(
Marshal.GetLastWin32Error());
}
}
else
{
throw new Win32Exception(
Marshal.GetLastWin32Error());
}
}
else
{
throw new Win32Exception(
Marshal.GetLastWin32Error());
}
}
finally
{
if (token != IntPtr.Zero)
{
CloseHandle(token);
}
if (tokenDuplicate != IntPtr.Zero)
{
CloseHandle(tokenDuplicate);
}
}
}
private void UndoImpersonation()
{
if (impersonationContext != null)
{
impersonationContext.Undo();
}
}
private WindowsImpersonationContext impersonationContext =
ull;
#endregion
}
}
Various Scripts and Application Code Segments for .NET, VB, C#, C++, C, Java, JavaScript, HTML, Python, Perl, AutoIT, Batch, ASP Classic, Objective-C, Swift, Unreal Engine 4, Unity3D & others. Also contains numerous IT tidbits, procedures, and tricks including Technology Hacks on various platforms.
Showing posts with label Edit Registry on Remote Machine in C#. Show all posts
Showing posts with label Edit Registry on Remote Machine in C#. Show all posts
Tuesday, July 13, 2010
Subscribe to:
Posts (Atom)
Generating "Always On Top" NSWindow in macOS across all detected displays
Also: Using UIKit & Cocoa Frameworks using Objective-C In m acOS or OS X , written in either Objective-C or Swift Langues, you m...