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

Windows Impersonation using C#

Rate me:
Please Sign up or sign in to vote.
4.77/5 (49 votes)
29 Apr 2003CPOL 721.6K   15.7K   149   74
An article demonstrating how to use Windows impersonation in your C# code

Impersonation

Introduction

I've been a member of the CodeProject for over 3 years now, and still haven't contributed any articles - until now.

While designing a Windows Forms-based application, to administrate containers in our Active Directory, I needed a way to allow binding to the AD using alternate credentials. Windows impersonation was the answer. This sample app demonstrates how to use unmanaged code by calling LogonUser() contained within the advapi32.dll, and pass a token handle back to your .NET application using WindowsImpersonationContext.

One of the downfalls to the LogonUser()function is that the password get passed in clear-text.

Partial Source Code

C#
using System.Runtime.InteropServices; // DllImport
using System.Security.Principal; // WindowsImpersonationContext
using System.Security.Permissions; // PermissionSetAttribute
...

public WindowsImpersonationContext 
    ImpersonateUser(string sUsername, string sDomain, string sPassword)
{
    // initialize tokens
    IntPtr pExistingTokenHandle = new IntPtr(0);
    IntPtr pDuplicateTokenHandle = new IntPtr(0);
    pExistingTokenHandle = IntPtr.Zero;
    pDuplicateTokenHandle = IntPtr.Zero;
    
    // if domain name was blank, assume local machine
    if (sDomain == "")
        sDomain = System.Environment.MachineName;

    try
    {
        string sResult = null;

        const int LOGON32_PROVIDER_DEFAULT = 0;

        // create token
        const int LOGON32_LOGON_INTERACTIVE = 2;
        //const int SecurityImpersonation = 2;

        // get handle to token
        bool bImpersonated = LogonUser(sUsername, sDomain, sPassword, 
            LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, 
                ref pExistingTokenHandle);

        // did impersonation fail?
        if (false == bImpersonated)
        {
            int nErrorCode = Marshal.GetLastWin32Error();
            sResult = "LogonUser() failed with error code: " + 
                nErrorCode + "\r\n";

            // show the reason why LogonUser failed
            MessageBox.Show(this, sResult, "Error", 
                MessageBoxButtons.OK, MessageBoxIcon.Error);
        }

        // Get identity before impersonation
        sResult += "Before impersonation: " + 
            WindowsIdentity.GetCurrent().Name + "\r\n";

        bool bRetVal = DuplicateToken(pExistingTokenHandle, 
            (int)SECURITY_IMPERSONATION_LEVEL.SecurityImpersonation, 
                ref pDuplicateTokenHandle);

        // did DuplicateToken fail?
        if (false == bRetVal)
        {
            int nErrorCode = Marshal.GetLastWin32Error();
            // close existing handle
            CloseHandle(pExistingTokenHandle); 
            sResult += "DuplicateToken() failed with error code: " 
                + nErrorCode + "\r\n";

            // show the reason why DuplicateToken failed
            MessageBox.Show(this, sResult, "Error", 
                MessageBoxButtons.OK, MessageBoxIcon.Error);
            return null;
        }
        else
        {
            // create new identity using new primary token
            WindowsIdentity newId = new WindowsIdentity
                                        (pDuplicateTokenHandle);
            WindowsImpersonationContext impersonatedUser = 
                                        newId.Impersonate();

            // check the identity after impersonation
            sResult += "After impersonation: " + 
                WindowsIdentity.GetCurrent().Name + "\r\n";
            
            MessageBox.Show(this, sResult, "Success", 
                MessageBoxButtons.OK, MessageBoxIcon.Information);
            return impersonatedUser;
        }
    }
    catch (Exception ex)
    {
        throw ex;
    }
    finally
    {
        // close handle(s)
        if (pExistingTokenHandle != IntPtr.Zero)
            CloseHandle(pExistingTokenHandle);
        if (pDuplicateTokenHandle != IntPtr.Zero) 
            CloseHandle(pDuplicateTokenHandle);
    }
}

Points of Interest

This code won't work on Windows 98 or ME because they do not utilize user tokens. Code was built and run using Visual Studio.NET 2002 on Windows XP Service Pack 1.

One of the other uses for this code I've found is, for instantiating COM components that must run in an alternate security context to that of the logged-on user.

If anyone has a more secure method of achieving the same thing, please let me know.

History

  • Version 1.0 - 04.25.03 - First release version

License

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


Written By
Zambia Zambia
Living abroad and loving life.

Comments and Discussions

 
AnswerRe: Error 1314 Pin
uppals12-Apr-07 13:06
uppals12-Apr-07 13:06 
GeneralHelp needed Windows 2000 SP4 still getting 1314! -- Re: Error 1314 Pin
devvvy21-Feb-08 20:41
devvvy21-Feb-08 20:41 
GeneralRe: Help needed Windows 2000 SP4 still getting 1314! -- Re: Error 1314 Pin
Christian Merritt26-Feb-08 3:02
Christian Merritt26-Feb-08 3:02 
Questionhow to use this in case of a local account? Pin
yossof elnaggar27-Jun-06 20:29
yossof elnaggar27-Jun-06 20:29 
AnswerRe: how to use this in case of a local account? Pin
Harkamal Singh12-Jul-07 19:04
Harkamal Singh12-Jul-07 19:04 
GeneralRe: how to use this in case of a local account? Pin
appalanaidu Aug20118-Feb-12 20:54
appalanaidu Aug20118-Feb-12 20:54 
GeneralFirst call takes too long Pin
schweeneh4-Apr-06 6:04
schweeneh4-Apr-06 6:04 
GeneralRe: First call takes too long Pin
Christian Merritt12-Jun-06 2:24
Christian Merritt12-Jun-06 2:24 
GeneralA similar article Pin
Uwe Keim23-Apr-05 23:59
sitebuilderUwe Keim23-Apr-05 23:59 
GeneralRe: A similar article Pin
craigg753-Nov-06 5:57
craigg753-Nov-06 5:57 
GeneralRe: A similar article Pin
Uwe Keim3-Nov-06 6:14
sitebuilderUwe Keim3-Nov-06 6:14 
GeneralImpersonation Pin
chriskoiak16-Mar-04 5:13
chriskoiak16-Mar-04 5:13 
QuestionRe: Impersonation Pin
tee_jay10-Apr-06 22:08
tee_jay10-Apr-06 22:08 
AnswerRe: Impersonation Pin
Harkamal Singh12-Jul-07 19:01
Harkamal Singh12-Jul-07 19:01 
GeneralRe: Impersonation Pin
Phutphornxai19-Jul-07 1:43
Phutphornxai19-Jul-07 1:43 
GeneralCoding Style Issues Pin
Andy Neilson7-May-03 2:56
Andy Neilson7-May-03 2:56 
GeneralRe: Coding Style Issues Pin
Maximilian Hänel27-May-03 12:54
Maximilian Hänel27-May-03 12:54 
GeneralRe: Coding Style Issues Pin
Andy Neilson28-May-03 2:53
Andy Neilson28-May-03 2:53 
GeneralRe: Coding Style Issues Pin
Maximilian Hänel28-May-03 4:56
Maximilian Hänel28-May-03 4:56 
GeneralJust to complete this Pin
Jahava25-Oct-03 4:53
Jahava25-Oct-03 4:53 
GeneralRe: Just to complete this Pin
Christian Merritt25-Oct-03 8:42
Christian Merritt25-Oct-03 8:42 
GeneralWhat an attitude... Pin
Jahava27-Oct-03 5:08
Jahava27-Oct-03 5:08 
GeneralRe: What an attitude... Pin
Christian Merritt27-Oct-03 5:46
Christian Merritt27-Oct-03 5:46 
GeneralIt's cool Pin
Jahava27-Oct-03 13:45
Jahava27-Oct-03 13:45 
GeneralRe: Coding Style Issues Pin
Jonathan C Dickinson5-May-08 1:53
Jonathan C Dickinson5-May-08 1:53 

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.