Come si fa la rappresentazione in .NET?


139

Esiste un modo semplice e immediato per impersonare un utente in .NET?

Finora ho usato questa classe dal progetto di codice per tutti i miei requisiti di rappresentazione.

Esiste un modo migliore per farlo utilizzando .NET Framework?

Ho un set di credenziali utente (nome utente, password, nome dominio) che rappresenta l'identità che devo imitare.


1
Potresti essere più specifico? Ci sono un sacco di modi per fare la rappresentazione fuori dagli schemi.
Esteban Araya,

Risposte:


60

Ecco una buona panoramica dei concetti di rappresentazione di .NET.

Fondamentalmente farai leva su queste classi che sono pronte all'uso nel framework .NET:

Il codice può spesso diventare lungo, ed è per questo che vedi molti esempi come quello a cui fai riferimento che cercano di semplificare il processo.


4
Solo una nota che la rappresentazione non è il proiettile d'argento e alcune API semplicemente non sono progettate per funzionare con la rappresentazione.
Lex Li

Quel link dal blog del programmatore olandese era eccellente. Approccio alla rappresentazione molto più intuitivo rispetto alle altre tecniche presentate.
code4life,

296

"Rappresentazione" nello spazio .NET generalmente significa eseguire codice con un account utente specifico. È un concetto un po 'separato rispetto all'accesso a quell'account utente tramite un nome utente e una password, sebbene queste due idee si accoppino frequentemente. Li descriverò entrambi e poi spiegherò come usare la mia libreria SimpleImpersonation , che li usa internamente.

imitazione

Le API per la rappresentazione sono fornite in .NET tramite lo System.Security.Principalspazio dei nomi:

  • In genere dovrebbe essere utilizzato WindowsIdentity.RunImpersonatedun codice più recente (.NET 4.6+, .NET Core, ecc.) , Che accetta un handle per il token dell'account utente e quindi un Actiono Func<T>per l'esecuzione del codice.

    WindowsIdentity.RunImpersonated(tokenHandle, () =>
    {
        // do whatever you want as this user.
    });

    o

    var result = WindowsIdentity.RunImpersonated(tokenHandle, () =>
    {
        // do whatever you want as this user.
        return result;
    });
  • Il codice precedente utilizzava il WindowsIdentity.Impersonatemetodo per recuperare un WindowsImpersonationContextoggetto. Questo oggetto implementa IDisposable, quindi generalmente dovrebbe essere chiamato da un usingblocco.

    using (WindowsImpersonationContext context = WindowsIdentity.Impersonate(tokenHandle))
    {
        // do whatever you want as this user.
    }

    Sebbene questa API sia ancora presente in .NET Framework, in genere dovrebbe essere evitata e non è disponibile in .NET Core o .NET Standard.

Accesso all'account utente

L'API per l'utilizzo di un nome utente e una password per ottenere l'accesso a un account utente in Windows è LogonUser- che è un'API nativa Win32. Al momento non esiste un'API .NET integrata per chiamarla, quindi è necessario ricorrere a P / Invoke.

[DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
internal static extern bool LogonUser(String lpszUsername, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, out IntPtr phToken);

Questa è la definizione di base della chiamata, tuttavia c'è molto di più da considerare per usarlo effettivamente in produzione:

  • Ottenere una maniglia con il modello di accesso "sicuro".
  • Chiudere gli handle nativi in ​​modo appropriato
  • Livelli di affidabilità della protezione dall'accesso di codice (CAS) (solo in .NET Framework)
  • Passa SecureStringquando puoi raccoglierne uno in modo sicuro tramite i tasti utente.

La quantità di codice da scrivere per illustrare tutto ciò va oltre ciò che dovrebbe essere in una risposta StackOverflow, IMHO.

Un approccio combinato e più semplice

Invece di scrivere tutto questo da solo, prendi in considerazione l'uso della mia libreria SimpleImpersonation , che combina la rappresentazione e l'accesso dell'utente in un'unica API. Funziona bene con basi di codice sia moderne che precedenti, con la stessa semplice API:

var credentials = new UserCredentials(domain, username, password);
Impersonation.RunAsUser(credentials, logonType, () =>
{
    // do whatever you want as this user.
}); 

o

var credentials = new UserCredentials(domain, username, password);
var result = Impersonation.RunAsUser(credentials, logonType, () =>
{
    // do whatever you want as this user.
    return something;
});

Si noti che è molto simile WindowsIdentity.RunImpersonatedall'API, ma non richiede di conoscere nulla sugli handle di token.

Questa è l'API a partire dalla versione 3.0.0. Vedere il file Leggimi del progetto per maggiori dettagli. Si noti inoltre che una versione precedente della libreria utilizzava un'API con il IDisposablemodello, simile a WindowsIdentity.Impersonate. La versione più recente è molto più sicura ed entrambe sono ancora utilizzate internamente.


14
Questo è molto simile al codice disponibile su msdn.microsoft.com/en-us/library/… ma è incredibilmente bello vederlo elencato qui. Semplice e facile da integrare nella mia soluzione. Grazie mille per aver fatto tutto il duro lavoro!
McArthey,

1
Grazie per aver pubblicato questo Tuttavia, nell'istruzione using ho provato questa riga di codice System.Security.Principal.WindowsIdentity.GetCurrent (). Il nome e il risultato erano solo il nome utente con cui ho effettuato l'accesso e non quello che ho passato nel contratore di rappresentazione.
Chris,

3
@Chris - Dovresti utilizzare uno degli altri tipi di accesso. Tipo 9 fornisce la rappresentazione solo sulle credenziali di rete in uscita. Ho testato i tipi 2, 3 e 8 da un'app WinForms e aggiornano correttamente l'entità corrente. Si potrebbe presumere che i tipi 4 e 5 lo facciano anche per applicazioni di servizio o batch. Vedi il link a cui ho fatto riferimento nel post.
Matt Johnson-Pint,

2
@Sophit - Lo fa già .
Matt Johnson-Pint,

4
@Sophit - Il codice sorgente di riferimento qui mostra chiaramente che Undoviene chiamato durante lo smaltimento.
Matt Johnson-Pint,

20

Questo è probabilmente quello che vuoi:

using System.Security.Principal;
using(WindowsIdentity.GetCurrent().Impersonate())
{
     //your code goes here
}

Ma ho davvero bisogno di maggiori dettagli per aiutarti. È possibile eseguire la rappresentazione con un file di configurazione (se si sta tentando di farlo su un sito Web) o tramite decoratori di metodi (attributi) se si tratta di un servizio WCF o tramite ... si ottiene l'idea.

Inoltre, se stiamo parlando di impersonare un client che ha chiamato un determinato servizio (o app Web), è necessario configurare il client correttamente in modo che passi i token appropriati.

Infine, se ciò che vuoi veramente fare è Delegare, devi anche impostare AD correttamente in modo che gli utenti e le macchine siano affidabili per la delega.

Modifica: dai
un'occhiata qui per vedere come impersonare un altro utente e per ulteriore documentazione.


2
Questo codice sembra che possa rappresentare solo l'identità di Windows corrente. C'è un modo per ottenere l'oggetto WindowsIdentity di un altro utente?
ashwnacharya,

Il link nella tua modifica ( msdn.microsoft.com/en-us/library/chf6fbt4.aspx - vai agli esempi lì) è davvero quello che stavo cercando!
Matt

Wow! mi hai guidato nella giusta direzione, bastano poche parole per fare la magia rappresentazione con un file di configurazione Grazie Esteban, saluti dal Perù
AjFmO

6

Ecco la mia porta vb.net della risposta di Matt Johnson. Ho aggiunto un enum per i tipi di accesso. LOGON32_LOGON_INTERACTIVEè stato il primo valore enum che ha funzionato per il server sql. La mia stringa di connessione era solo attendibile. Nessun nome utente / password nella stringa di connessione.

  <PermissionSet(SecurityAction.Demand, Name:="FullTrust")> _
  Public Class Impersonation
    Implements IDisposable

    Public Enum LogonTypes
      ''' <summary>
      ''' This logon type is intended for users who will be interactively using the computer, such as a user being logged on  
      ''' by a terminal server, remote shell, or similar process.
      ''' This logon type has the additional expense of caching logon information for disconnected operations; 
      ''' therefore, it is inappropriate for some client/server applications,
      ''' such as a mail server.
      ''' </summary>
      LOGON32_LOGON_INTERACTIVE = 2

      ''' <summary>
      ''' This logon type is intended for high performance servers to authenticate plaintext passwords.
      ''' The LogonUser function does not cache credentials for this logon type.
      ''' </summary>
      LOGON32_LOGON_NETWORK = 3

      ''' <summary>
      ''' This logon type is intended for batch servers, where processes may be executing on behalf of a user without 
      ''' their direct intervention. This type is also for higher performance servers that process many plaintext
      ''' authentication attempts at a time, such as mail or Web servers. 
      ''' The LogonUser function does not cache credentials for this logon type.
      ''' </summary>
      LOGON32_LOGON_BATCH = 4

      ''' <summary>
      ''' Indicates a service-type logon. The account provided must have the service privilege enabled. 
      ''' </summary>
      LOGON32_LOGON_SERVICE = 5

      ''' <summary>
      ''' This logon type is for GINA DLLs that log on users who will be interactively using the computer. 
      ''' This logon type can generate a unique audit record that shows when the workstation was unlocked. 
      ''' </summary>
      LOGON32_LOGON_UNLOCK = 7

      ''' <summary>
      ''' This logon type preserves the name and password in the authentication package, which allows the server to make 
      ''' connections to other network servers while impersonating the client. A server can accept plaintext credentials 
      ''' from a client, call LogonUser, verify that the user can access the system across the network, and still 
      ''' communicate with other servers.
      ''' NOTE: Windows NT:  This value is not supported. 
      ''' </summary>
      LOGON32_LOGON_NETWORK_CLEARTEXT = 8

      ''' <summary>
      ''' This logon type allows the caller to clone its current token and specify new credentials for outbound connections.
      ''' The new logon session has the same local identifier but uses different credentials for other network connections. 
      ''' NOTE: This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider.
      ''' NOTE: Windows NT:  This value is not supported. 
      ''' </summary>
      LOGON32_LOGON_NEW_CREDENTIALS = 9
    End Enum

    <DllImport("advapi32.dll", SetLastError:=True, CharSet:=CharSet.Unicode)> _
    Private Shared Function LogonUser(lpszUsername As [String], lpszDomain As [String], lpszPassword As [String], dwLogonType As Integer, dwLogonProvider As Integer, ByRef phToken As SafeTokenHandle) As Boolean
    End Function

    Public Sub New(Domain As String, UserName As String, Password As String, Optional LogonType As LogonTypes = LogonTypes.LOGON32_LOGON_INTERACTIVE)
      Dim ok = LogonUser(UserName, Domain, Password, LogonType, 0, _SafeTokenHandle)
      If Not ok Then
        Dim errorCode = Marshal.GetLastWin32Error()
        Throw New ApplicationException(String.Format("Could not impersonate the elevated user.  LogonUser returned error code {0}.", errorCode))
      End If

      WindowsImpersonationContext = WindowsIdentity.Impersonate(_SafeTokenHandle.DangerousGetHandle())
    End Sub

    Private ReadOnly _SafeTokenHandle As New SafeTokenHandle
    Private ReadOnly WindowsImpersonationContext As WindowsImpersonationContext

    Public Sub Dispose() Implements System.IDisposable.Dispose
      Me.WindowsImpersonationContext.Dispose()
      Me._SafeTokenHandle.Dispose()
    End Sub

    Public NotInheritable Class SafeTokenHandle
      Inherits SafeHandleZeroOrMinusOneIsInvalid

      <DllImport("kernel32.dll")> _
      <ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)> _
      <SuppressUnmanagedCodeSecurity()> _
      Private Shared Function CloseHandle(handle As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
      End Function

      Public Sub New()
        MyBase.New(True)
      End Sub

      Protected Overrides Function ReleaseHandle() As Boolean
        Return CloseHandle(handle)
      End Function
    End Class

  End Class

È necessario utilizzare con Usingun'istruzione per contenere del codice per l'esecuzione impersonata.


3

Visualizza maggiori dettagli dalla mia risposta precedente Ho creato un pacchetto Nuget Nuget

Codice su Github

esempio: è possibile utilizzare:

           string login = "";
           string domain = "";
           string password = "";

           using (UserImpersonation user = new UserImpersonation(login, domain, password))
           {
               if (user.ImpersonateValidUser())
               {
                   File.WriteAllText("test.txt", "your text");
                   Console.WriteLine("File writed");
               }
               else
               {
                   Console.WriteLine("User not connected");
               }
           }

Vieuw il codice completo:

using System;
using System.Runtime.InteropServices;
using System.Security.Principal;


/// <summary>
/// Object to change the user authticated
/// </summary>
public class UserImpersonation : IDisposable
{
    /// <summary>
    /// Logon method (check athetification) from advapi32.dll
    /// </summary>
    /// <param name="lpszUserName"></param>
    /// <param name="lpszDomain"></param>
    /// <param name="lpszPassword"></param>
    /// <param name="dwLogonType"></param>
    /// <param name="dwLogonProvider"></param>
    /// <param name="phToken"></param>
    /// <returns></returns>
    [DllImport("advapi32.dll")]
    private static extern bool LogonUser(String lpszUserName,
        String lpszDomain,
        String lpszPassword,
        int dwLogonType,
        int dwLogonProvider,
        ref IntPtr phToken);

    /// <summary>
    /// Close
    /// </summary>
    /// <param name="handle"></param>
    /// <returns></returns>
    [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
    public static extern bool CloseHandle(IntPtr handle);

    private WindowsImpersonationContext _windowsImpersonationContext;
    private IntPtr _tokenHandle;
    private string _userName;
    private string _domain;
    private string _passWord;

    const int LOGON32_PROVIDER_DEFAULT = 0;
    const int LOGON32_LOGON_INTERACTIVE = 2;

    /// <summary>
    /// Initialize a UserImpersonation
    /// </summary>
    /// <param name="userName"></param>
    /// <param name="domain"></param>
    /// <param name="passWord"></param>
    public UserImpersonation(string userName, string domain, string passWord)
    {
        _userName = userName;
        _domain = domain;
        _passWord = passWord;
    }

    /// <summary>
    /// Valiate the user inforamtion
    /// </summary>
    /// <returns></returns>
    public bool ImpersonateValidUser()
    {
        bool returnValue = LogonUser(_userName, _domain, _passWord,
                LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT,
                ref _tokenHandle);

        if (false == returnValue)
        {
            return false;
        }

        WindowsIdentity newId = new WindowsIdentity(_tokenHandle);
        _windowsImpersonationContext = newId.Impersonate();
        return true;
    }

    #region IDisposable Members

    /// <summary>
    /// Dispose the UserImpersonation connection
    /// </summary>
    public void Dispose()
    {
        if (_windowsImpersonationContext != null)
            _windowsImpersonationContext.Undo();
        if (_tokenHandle != IntPtr.Zero)
            CloseHandle(_tokenHandle);
    }

    #endregion
}

2

Sono consapevole che sono in ritardo per la festa, ma ritengo che la biblioteca di Phillip Allan-Harding sia la migliore per questo caso e simili.

Hai solo bisogno di un piccolo pezzo di codice come questo:

private const string LOGIN = "mamy";
private const string DOMAIN = "mongo";
private const string PASSWORD = "HelloMongo2017";

private void DBConnection()
{
    using (Impersonator user = new Impersonator(LOGIN, DOMAIN, PASSWORD, LogonType.LOGON32_LOGON_NEW_CREDENTIALS, LogonProvider.LOGON32_PROVIDER_WINNT50))
    {
    }
}

E aggiungi la sua classe:

Rappresentazione .NET (C #) con credenziali di rete

Il mio esempio può essere utilizzato se è necessario che l'accesso impersonato disponga di credenziali di rete, ma ha più opzioni.


1
Il tuo approccio sembra più generico pur essendo più specifico sui parametri +1
Kerry Perret

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.