Click here to Skip to main content
15,881,424 members
Articles / Programming Languages / C#

A Complete Impersonation Demo in C#.NET

Rate me:
Please Sign up or sign in to vote.
4.92/5 (15 votes)
20 Jun 2013CPOL3 min read 182.8K   4.6K   41   15
A complete Impersonation demo in C#.NET

Under some scenarios, we need to impersonate another Windows account and do some work under that user’s session, for example:

  • An enterprise ASP.NET web application provides server administrators’ ability to access the server under some specific privilege set; Server admin inputs their NT account information (domain\account + password) on the page, we need to get WinNT Access Token and then impersonate this server user, so that we acquire its specific privilege and do the things ONLY THIS ACCOUNT CAN DO.
  • We developed a Windows Service which needs internet access periodically, but a specific user sets an Sock5 proxy to access the internet, then your Windows Service needs to know the Socks proxy information so that it could access internet, you must impersonate this user and read the settings.

Impersonation Definition

Definition copied from http://msdn.microsoft.com/en-us/library/aa376391(VS.85).aspx

Impersonation is the ability of a thread to execute using different security information than the process that owns the thread. Typically, a thread in a server application impersonates a client. This allows the server thread to act on behalf of that client to access objects on the server or validate access to the client’s own objects.

I read many articles and blogs and wrote an ImpersonateHelper class to do impersonation work. During the investigation, I noticed that very few articles/blogs refer to a complete impersonation process, so I decided to write one that refers to as many details as possible, and actually my code was a code snippet combination that came from 10+ sourcesSmile.

Functionality

I create a local user: TempUser which belongs to “Administrators” (make sure to log on TempUser at least once). I logged on as my own account and I am going to impersonate TempUser and do two things:

  1. Create a folder “C:\TempFolder”, modify its default privilege, ONLY TempUser has full control of it, I will create a text file under this folder after impersonating to prove impersonation is successful.

    Tempfolder1

    Notes: After setting TempUser as the only owner, my current account cannot access this folder except privilege promotion (I disabled UAC, if UAC is enabled, a prompt window will pop up and as for Admin confirm).

    Tempfolder2

    In addition, I tried to access this folder programmatically under my account, UnauthorizedAccessException will be thrown!

    Unauthorized

  2. I will access TempUser’s HKEY_CURRENT_USER and do registry key creation, reading and deleting.

Code Snippet

We need to invoke three very famous Win32 APIs: LogonUser, DuplicateToken and RevertToSelf.

C#
[DllImport("advapi32.dll")]
public 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)]
public static extern int DuplicateToken(IntPtr hToken, int impersonationLevel, 
	ref IntPtr hNewToken);

///
/// A process should call the RevertToSelf function after finishing 
/// any impersonation begun by using the DdeImpersonateClient, 
/// ImpersonateDdeClientWindow, ImpersonateLoggedOnUser, ImpersonateNamedPipeClient, 
/// ImpersonateSelf, ImpersonateAnonymousToken or SetThreadToken function.
/// If RevertToSelf fails, your application continues to run in the context of the client,
/// which is not appropriate. You should shut down the process if RevertToSelf fails.
/// RevertToSelf Function: http://msdn.microsoft.com/en-us/library/aa379317(VS.85).aspx
///
/// A boolean value indicates the function succeeded or not.
[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool RevertToSelf();

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

An important note: In order to access HKCU, we need to invoke another Win32 API: LoadUserProfile, to acquire the handle of HKCU under TempUser, code below, as I highlighted line 45 and 49, after invoking LoadUserProfile, hProfile will be set handle to HKCU:

C#
[StructLayout(LayoutKind.Sequential)]
public struct ProfileInfo
{
    ///
    /// Specifies the size of the structure, in bytes.
    ///
    public int dwSize;
    
    ///
    /// This member can be one of the following flags: 
    /// PI_NOUI or PI_APPLYPOLICY
    ///
    public int dwFlags;
    
    ///
    /// Pointer to the name of the user.
    /// This member is used as the base name of the directory 
    /// in which to store a new profile.
    ///
    public string lpUserName;
    
    ///
    /// Pointer to the roaming user profile path.
    /// If the user does not have a roaming profile, this member can be NULL.
    ///
    public string lpProfilePath;
    
    ///
    /// Pointer to the default user profile path. This member can be NULL.
    ///
    public string lpDefaultPath;
    
    ///
    /// Pointer to the name of the validating domain controller, in NetBIOS format.
    /// If this member is NULL, the Windows NT 4.0-style policy will not be applied.
    ///
    public string lpServerName;
    
    ///
    /// Pointer to the path of the Windows NT 4.0-style policy file. 
    /// This member can be NULL.
    ///
    public string lpPolicyPath;
    
    ///
    /// Handle to the HKEY_CURRENT_USER registry key.
    ///
    public IntPtr hProfile;
}

    [DllImport("userenv.dll", SetLastError = true, CharSet = CharSet.Auto)]
    public static extern bool LoadUserProfile
    	(IntPtr hToken, ref ProfileInfo lpProfileInfo);
    
    [DllImport("Userenv.dll", CallingConvention = 
    	CallingConvention.Winapi, SetLastError = true, CharSet = CharSet.Auto)]
    public static extern bool UnloadUserProfile
    	(IntPtr hToken, IntPtr lpProfileInfo);

Code to Execute Impersonation

C#
WindowsIdentity m_ImpersonatedUser;
            IntPtr token = IntPtr.Zero;
            IntPtr tokenDuplicate = IntPtr.Zero;
            const int SecurityImpersonation = 2;
            const int TokenType = 1;

            try
            {
                if (RevertToSelf())
                {
                    Console.WriteLine("Before impersonation: " +
                                      WindowsIdentity.GetCurrent().Name);

                    String userName = "TempUser";
                    IntPtr password = GetPassword();

                    if (LogonUser(userName, Environment.MachineName, 
                    	"!@#$QWERasdf", LOGON32_LOGON_INTERACTIVE,
                                  LOGON32_PROVIDER_DEFAULT, ref token) != 0)
                    {
                        if (DuplicateToken(token, SecurityImpersonation, 
					ref tokenDuplicate) != 0)
                        {
                            m_ImpersonatedUser = new WindowsIdentity(tokenDuplicate);
                            using (m_ImpersonationContext = 
					m_ImpersonatedUser.Impersonate())
                            {
                                if (m_ImpersonationContext != null)
                                {
                                    Console.WriteLine("After Impersonation succeeded: 
                                    		" + Environment.NewLine +
                                                      "User Name: " +
                                                      WindowsIdentity.GetCurrent
                                                      (TokenAccessLevels.MaximumAllowed).Name +
                                                      Environment.NewLine +
                                                      "SID: " +
                                                      WindowsIdentity.GetCurrent
                                                      (TokenAccessLevels.MaximumAllowed).User.
                                                          Value);

                                    #region LoadUserProfile
                                    // Load user profile
                                    ProfileInfo profileInfo = new ProfileInfo();
                                    profileInfo.dwSize = Marshal.SizeOf(profileInfo);
                                    profileInfo.lpUserName = userName;
                                    profileInfo.dwFlags = 1;
                                    Boolean loadSuccess = LoadUserProfile
					(tokenDuplicate, ref profileInfo);

                                    if (!loadSuccess)
                                    {
                                        Console.WriteLine("LoadUserProfile() 
						failed with error code: " +
                                                          Marshal.GetLastWin32Error());
                                        throw new Win32Exception
						(Marshal.GetLastWin32Error());
                                    }

                                    if (profileInfo.hProfile == IntPtr.Zero)
                                    {
                                        Console.WriteLine(
                                            "LoadUserProfile() failed - 
                                            HKCU handle was not loaded. Error code: " +
                                            Marshal.GetLastWin32Error());
                                        throw new Win32Exception
						(Marshal.GetLastWin32Error());
                                    }
                                    #endregion

                                    CloseHandle(token);
                                    CloseHandle(tokenDuplicate);

                                    // Do tasks after impersonating successfully
                                    AccessFileSystem();

                                    // Access HKCU after loading user's profile
                                    AccessHkcuRegistry(profileInfo.hProfile);

                                    // Unload user profile
                                    // MSDN remarks 
                                    // http://msdn.microsoft.com/en-us/library/bb762282
			         // (VS.85).aspx
                                    // Before calling UnloadUserProfile you should ensure 
                                    // that all handles to keys that you have opened in the
                                    // user's registry hive are closed. If you do not close 
                                    // all open registry handles, the user's profile fails
                                    // to unload. For more information, 
                                    // see Registry Key Security 
                                    // and Access Rights and Registry Hives.
                                    UnloadUserProfile
					(tokenDuplicate, profileInfo.hProfile);

                                    // Undo impersonation
                                    m_ImpersonationContext.Undo();
                                }
                            }
                        }
                        else
                        {
                            Console.WriteLine("DuplicateToken() failed with 
                            	error code: " + Marshal.GetLastWin32Error());
                            throw new Win32Exception(Marshal.GetLastWin32Error());
                        }
                    }
                }
            }
            catch (Win32Exception we)
            {
                throw we;
            }
            catch
            {
                throw new Win32Exception(Marshal.GetLastWin32Error());
            }
            finally
            {
                if (token != IntPtr.Zero) CloseHandle(token);
                if (tokenDuplicate != IntPtr.Zero) CloseHandle(tokenDuplicate);

                Console.WriteLine("After finished impersonation: " + 
                	WindowsIdentity.GetCurrent().Name);
            }

AccessFileSystem Method

C#
private static void AccessFileSystem()
{
    // Access file system %appdata% will be "C:\Users\TempUser\appdata\Roaming"
    String appDataPath = Environment.GetFolderPath
		(Environment.SpecialFolder.ApplicationData);
    File.AppendAllText("C:\\TempFolder\\Temp.txt", "some text...");
}

AccessHkcuRegistry Method

C#
private static void AccessHkcuRegistry(IntPtr hkcuHandle)
{
    // Access registry HKCU
    using (SafeRegistryHandle safeHandle = new SafeRegistryHandle(hkcuHandle, true))
    {
        using (RegistryKey tempUserHKCU = RegistryKey.FromHandle(safeHandle))
        {
            // Unum all sub keys under tempuser's HKCU
            String[] keys = tempUserHKCU.GetSubKeyNames();
            
            // Create a new sub key under tempuser's HKCU
            using (RegistryKey tempKeyByWayne = 
		tempUserHKCU.CreateSubKey("TempKeyByWayne"))
            {
                // Ensure privilege
                //RegistrySecurity registrySecurity = new RegistrySecurity();
                //RegistryAccessRule accessRule = new RegistryAccessRule
                // 	(Environment.MachineName + "\\" + userName,
                //          RegistryRights.TakeOwnership,
                //          InheritanceFlags.ContainerInherit,
                //          PropagationFlags.None,
                //          AccessControlType.Allow);
                //registrySecurity.SetAccessRule(accessRule);
                //tempKeyByWayne.SetAccessControl(registrySecurity);
                
                // Create a new String value under created TempKeyByWayne subkey
                tempKeyByWayne.SetValue("StrType", "TempContent", 
					RegistryValueKind.String);
                
                // Read the value
                using (RegistryKey regKey = tempUserHKCU.OpenSubKey("TempKeyByWayne"))
                {
                    String valueContent = regKey.GetValue("StrType") as String;
                    Console.WriteLine(valueContent);
                }
                
                // Delete created TempKeyByWayne subkey
                tempUserHKCU.DeleteSubKey("TempKeyByWayne");
                tempKeyByWayne.Close();
            }
        }
    }
}

Impersonation Result and Verification

Temp.txt was created.

TempFolder

TempKeyByWayne” was created under HKCU.

Registry

References

Filed under: Win32 API, Windows Development, Windows Service
Tagged: .NET, C#, CodeProject, DuplicateToken, Impersonate, LoadUserProfile, LogonUser, PInvoke, Win32 API Image 7 Image 8 Image 9 Image 10 Image 11 Image 12 Image 13 Image 14

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) SAP Labs Shanghai
China China
Wayne is a software developer, Tech Lead and also a geek. He has more than 6 years' experience in Web development(server: ASP.NET (MVC), Web Service, IIS; Client: HTML/CSS/JavaScript/jQuery/AJAX), Windows development (Winform, Windows Service, WPF/Silverlight, Win32 API and WMI) and SQL Server. Deep understanding of GOF Design Patterns, S.O.L.i.D principle, MVC, MVVM, Domain Driven Design, SOA, REST and AOP.

Wayne's Geek Life http://WayneYe.com

Infinite passion on programming!

Comments and Discussions

 
QuestionCan a PIN be used for impersonation login Pin
Member 1332242521-Jul-17 10:58
Member 1332242521-Jul-17 10:58 
QuestionLoadUserProfile returns false. Can you please help? Pin
Ven HS2-Sep-16 0:03
Ven HS2-Sep-16 0:03 
QuestionLoadUserProfile fails after the user is impersonated in Windows 2008 R2 Machine. Pin
Member 36507944-Feb-15 11:22
Member 36507944-Feb-15 11:22 
AnswerRe: LoadUserProfile fails after the user is impersonated in Windows 2008 R2 Machine. Pin
Member 1225913612-Jan-16 1:01
Member 1225913612-Jan-16 1:01 
GeneralMy vote of 5 Pin
M Rayhan10-Oct-13 23:10
M Rayhan10-Oct-13 23:10 
QuestionLink to code broken, but here is a full simplified example Pin
Jason Jakob20-Jun-13 5:11
Jason Jakob20-Jun-13 5:11 
QuestionProgrammatically Impersonation in VB.NET to access Task from Task Scheduler Pin
sanjayv.gade11-Apr-12 2:13
sanjayv.gade11-Apr-12 2:13 
GeneralAccess Rights Pin
Josh.Hetland6-Dec-10 11:04
Josh.Hetland6-Dec-10 11:04 
GeneralRe: Access Rights Pin
Member 1225913612-Jan-16 1:01
Member 1225913612-Jan-16 1:01 
QuestionDuplicateToken ? Pin
Nicolas Dorier12-Nov-10 4:02
professionalNicolas Dorier12-Nov-10 4:02 
AnswerRe: DuplicateToken ? Pin
Wayne Ye13-Nov-10 20:02
Wayne Ye13-Nov-10 20:02 
Hi Nicolas,
I think the answer is here:
http://msdn.microsoft.com/en-us/library/aa446616(VS.85).aspx

Smile | :)
Happy CodingSmile | :)
Wayne Ye - Senior Software Development Engineer
Email: wayneyedotcom@gmail.com
Technical Blog: http://wayneye.wordpress.com
Personal Website: http://WayneYe.com

GeneralRe: DuplicateToken ? Pin
Nicolas Dorier14-Nov-10 5:03
professionalNicolas Dorier14-Nov-10 5:03 
GeneralRe: DuplicateToken ? Pin
Wayne Ye15-Nov-10 17:00
Wayne Ye15-Nov-10 17:00 
GeneralRe: DuplicateToken ? Pin
Nicolas Dorier15-Nov-10 17:27
professionalNicolas Dorier15-Nov-10 17:27 
GeneralRe: DuplicateToken ? Pin
Wayne Ye15-Nov-10 18:22
Wayne Ye15-Nov-10 18:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.